mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 04:03:59 +02:00
Merge branch 'master' of https://github.com/highfidelity/hifi into typeSafePropertyCleanup
This commit is contained in:
commit
c1b4e3bbb7
2 changed files with 1 additions and 2 deletions
|
@ -26,7 +26,7 @@ var viewHelpers = {
|
|||
|
||||
setting_value = _(values).valueForKeyPath(keypath);
|
||||
|
||||
if (!setting_value) {
|
||||
if (setting_value === undefined || setting_value === null) {
|
||||
if (_.has(setting, 'default')) {
|
||||
setting_value = setting.default;
|
||||
} else {
|
||||
|
|
|
@ -243,7 +243,6 @@ table#properties-list {
|
|||
|
||||
#properties-list .label {
|
||||
font-weight: bold;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
|
|
Loading…
Reference in a new issue