We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8053a38 commit e54ace6Copy full SHA for e54ace6
apps/frontend/src/pages/servers/manage/[id]/options/network.vue
@@ -34,12 +34,15 @@
34
v-model="newAllocationName"
35
type="text"
36
class="bg-bg-input w-full rounded-lg p-4"
37
+ maxlength="32"
38
placeholder="e.g. Secondary allocation"
39
/>
40
</div>
41
<div class="mb-1 mt-4 flex justify-end gap-4">
42
<Button transparent @click="editAllocationModal?.hide()"> Cancel </Button>
- <Button color="primary" @click="editAllocation"> <SaveIcon /> Update Allocation </Button>
43
+ <Button color="primary" :disabled="!newAllocationName" @click="editAllocation">
44
+ <SaveIcon /> Update Allocation
45
+ </Button>
46
47
</UiServersPyroModal>
48
</Modal>
0 commit comments