Skip to content

Commit

Permalink
fix: layout in setting page[WTEL-3818]
Browse files Browse the repository at this point in the history
  • Loading branch information
Lera24 committed Oct 19, 2023
1 parent dd87ca3 commit 58a63f1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
:clearable="false"
:track-by="null"
:disabled="id"
:label="$t('reusable.name')"
:v="v$.itemInstance.name"
:value="itemInstance.name"
required
@input="setSettingName"
/>
Expand Down
29 changes: 13 additions & 16 deletions src/modules/system/modules/settings/components/the-settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,14 @@
<wt-table-actions
:icons="['refresh']"
@input="tableActionsHandler"
/>
>
<delete-all-action
v-if="hasDeleteAccess"
:class="{'hidden': anySelected}"
:selected-count="selectedRows.length"
@click="callDelete(selectedRows)"
/>
</wt-table-actions>
</div>
</header>

Expand Down Expand Up @@ -89,21 +96,11 @@
:prev="page > 1"
:size="size"
debounce
@enter="loadList"
@input="setSearch"
@search="loadList"
></wt-search-bar>
<wt-table-actions
:icons="['refresh']"
@input="tableActionsHandler"
>
<delete-all-action
v-if="hasDeleteAccess"
:class="{'hidden': anySelected}"
:selected-count="selectedRows.length"
@click="callDelete(selectedRows)"
></delete-all-action>
</wt-table-actions>
@change="loadList"
@input="setSize"
@next="nextPage"
@prev="prevPage"
/>
</div>
</section>
</template>
Expand Down

0 comments on commit 58a63f1

Please sign in to comment.