Commit bbd3c338 authored by lauraMon's avatar lauraMon

Replaces underscore with lodash isEmpty

parent c2cb1834
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* - Button Actions. * - Button Actions.
* [Mockup](https://gitlab.com/gitlab-org/gitlab-foss/uploads/2f655655c0eadf655d0ae7467b53002a/environments__deploy-graphic.png) * [Mockup](https://gitlab.com/gitlab-org/gitlab-foss/uploads/2f655655c0eadf655d0ae7467b53002a/environments__deploy-graphic.png)
*/ */
import _ from 'underscore'; import { isEmpty } from 'lodash';
import { GlLoadingIcon, GlLink, GlTooltipDirective } from '@gitlab/ui'; import { GlLoadingIcon, GlLink, GlTooltipDirective } from '@gitlab/ui';
import deployBoardSvg from 'ee_empty_states/icons/_deploy_board.svg'; import deployBoardSvg from 'ee_empty_states/icons/_deploy_board.svg';
import { n__, s__, sprintf } from '~/locale'; import { n__, s__, sprintf } from '~/locale';
...@@ -55,7 +55,7 @@ export default { ...@@ -55,7 +55,7 @@ export default {
}, },
computed: { computed: {
canRenderDeployBoard() { canRenderDeployBoard() {
return !this.isEmpty && !_.isEmpty(this.deployBoardData); return !this.isEmpty && !isEmpty(this.deployBoardData);
}, },
legacyLabelWarningMessage() { legacyLabelWarningMessage() {
return sprintf( return sprintf(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment