Skip to content

Commit

Permalink
revert position of delete button in server edit
Browse files Browse the repository at this point in the history
  • Loading branch information
ssrahn committed Aug 3, 2023
1 parent 5a4a25f commit 9973f08
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions vueapp/components/Config/EditServer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,21 @@
</fieldset>
<WorkflowOptions v-if="id != 'new'"/>
<button v-if="config !== null"
class="button trash"
type="button"
@click="deleteConfig"
:disabled="disabled"
>
Server entfernen
</button>
</form>
<MessageList :float="true"/>
</template>
<template v-slot:dialogButtons>
<button v-if="config !== null"
class="button trash"
type="button"
@click="deleteConfig"
:disabled="disabled"
>
Löschen
</button>
</template>
</StudipDialog>
</div>
</template>
Expand Down

0 comments on commit 9973f08

Please sign in to comment.