nextcloud/apps/workflowengine/src/hbs_helpers/selectItem.js
Arthur Schiwon 738ca9f849
fix building WFE Handlebars
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2019-05-15 11:24:12 +02:00

7 lines
138 B
JavaScript

module.exports = function(currentValue, itemValue) {
if (currentValue === itemValue) {
return 'selected="selected"';
}
return "";
}