Skip to content

Commit

Permalink
enh: use required name prop for NcAppSettingsSection
Browse files Browse the repository at this point in the history
Signed-off-by: Cleopatra Enjeck M <patrathewhiz@gmail.com>
  • Loading branch information
enjeck committed Feb 14, 2024
1 parent 0f07e0e commit ac65c78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/modals/ViewSettings.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template>
<NcAppSettingsDialog :open.sync="open" :show-navigation="true" data-cy="viewSettingsDialog" :title="createView ? t('tables', 'Create view') : t('tables', 'Edit view')">
<NcAppSettingsSection v-if="columns === null" id="loading" title="">
<NcAppSettingsSection v-if="columns === null" id="loading" name="">
<div class="icon-loading" />
</NcAppSettingsSection>
<!--title & emoji-->
<NcAppSettingsSection v-if="columns != null" id="title" :title="t('tables', 'Title')" data-cy="viewSettingsDialogSection">
<NcAppSettingsSection v-if="columns != null" id="title" :name="t('tables', 'Title')" data-cy="viewSettingsDialogSection">
<div class="col-4" style="display: inline-flex;">
<NcEmojiPicker :close-on-select="true" @select="setIcon">
<NcButton type="tertiary"
Expand Down

0 comments on commit ac65c78

Please sign in to comment.