Skip to content

Commit e0dacb6

Browse files
committed
add grouping to entityField
1 parent 604b238 commit e0dacb6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/shared/foundation-shared-components/components/fields/FSEntityFieldUI.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,10 @@ export default defineComponent({
234234
id: EntityType.Folder,
235235
label: $tr("ui.common.folders", "Folders")
236236
},
237+
{
238+
id: EntityType.Grouping,
239+
label: $tr("ui.common.groupings", "Groupings")
240+
},
237241
{
238242
id: EntityType.Subgrouping,
239243
label: $tr("ui.common.subgroupings", "Subgroupings")
@@ -263,6 +267,8 @@ export default defineComponent({
263267
return "mdi-view-dashboard";
264268
case EntityType.Folder:
265269
return "mdi-folder";
270+
case EntityType.Grouping:
271+
return "mdi-chart-donut";
266272
case EntityType.Subgrouping:
267273
return "mdi-shape-outline";
268274
default:

0 commit comments

Comments
 (0)