529e3c4073
* adds helper so only rows with values display * adds changelog * add argument to is-empty-value helper to check for default * adds test to helper for added named argument
12 lines
323 B
JavaScript
12 lines
323 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export default helper(function isEmptyValue([value], { hasDefault = false }) {
|
|
if (hasDefault) {
|
|
value = hasDefault;
|
|
}
|
|
if (typeof value === 'object' && value !== null) {
|
|
return Object.keys(value).length === 0;
|
|
}
|
|
return value == null || value === '';
|
|
});
|