Skip to content

Commit

Permalink
refactor: separated Section, Column & Field as different component
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Jan 9, 2025
1 parent de06ed4 commit 6d0d1d1
Show file tree
Hide file tree
Showing 18 changed files with 415 additions and 433 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Activities/DataFields.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<script setup>
import EditIcon from '@/components/Icons/EditIcon.vue'
import DataFieldsModal from '@/components/Modals/DataFieldsModal.vue'
import FieldLayout from '@/components/FieldLayout.vue'
import FieldLayout from '@/components/FieldLayout/FieldLayout.vue'
import { Badge, createResource, createDocumentResource } from 'frappe-ui'
import LoadingIndicator from '@/components/Icons/LoadingIndicator.vue'
import { createToast } from '@/utils'
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/components/Controls/GridRowFieldsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
v-else
:tabs="tabs.data"
:data="{}"
:modal="true"
:preview="true"
/>
</div>
Expand All @@ -49,7 +48,7 @@
</Dialog>
</template>
<script setup>
import FieldLayout from '@/components/FieldLayout.vue'
import FieldLayout from '@/components/FieldLayout/FieldLayout.vue'
import FieldLayoutEditor from '@/components/FieldLayoutEditor.vue'
import { useDebounceFn } from '@vueuse/core'
import { capture } from '@/telemetry'
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Controls/GridRowModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<script setup>
import EditIcon from '@/components/Icons/EditIcon.vue'
import FieldLayout from '@/components/FieldLayout.vue'
import FieldLayout from '@/components/FieldLayout/FieldLayout.vue'
import { usersStore } from '@/stores/users'
import { createResource } from 'frappe-ui'
import { nextTick } from 'vue'
Expand Down
Loading

0 comments on commit 6d0d1d1

Please sign in to comment.