mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
7 lines
138 B
JavaScript
7 lines
138 B
JavaScript
module.exports = function(currentValue, itemValue) {
|
|
if (currentValue === itemValue) {
|
|
return 'selected="selected"';
|
|
}
|
|
|
|
return "";
|
|
}
|