mirror of
https://github.com/status-im/consul.git
synced 2025-02-11 05:07:02 +00:00
10 lines
276 B
JavaScript
10 lines
276 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export function collapsibleNotices(params, hash) {
|
|
// This filter will only return truthy items
|
|
const noticesCount = params.filter(Boolean).length;
|
|
return noticesCount > 2;
|
|
}
|
|
|
|
export default helper(collapsibleNotices);
|