Skip to content

Commit

Permalink
refactor(ontology): rename boolean prop type (DSP-1561) (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
kilchenmann committed Apr 22, 2021
1 parent ac820dd commit 4dd23d3
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/app/project/ontology/default-data/default-properties.ts
Expand Up @@ -88,14 +88,19 @@ export class DefaultProperties {
objectType: Constants.ListValue,
guiEle: Constants.SalsahGui + Constants.HashDelimiter + 'Radio',
group: 'List'
},
}
]
},
{
group: 'Selection (boolean)',
elements: [
{
icon: 'toggle_off',
label: 'On / Off',
label: 'Yes / No',
subPropOf: Constants.HasValue,
objectType: Constants.BooleanValue,
guiEle: Constants.SalsahGui + Constants.HashDelimiter + 'Checkbox', // 'Toggle',
group: 'List'
guiEle: Constants.SalsahGui + Constants.HashDelimiter + 'Checkbox', // should be 'Toggle' but it's not supported in DSP-Tangoh,
group: 'Selection (boolean)'
}
]
},
Expand Down

0 comments on commit 4dd23d3

Please sign in to comment.