Showing
1 changed file
with
2 additions
and
4 deletions
@@ -132,13 +132,11 @@ | @@ -132,13 +132,11 @@ | ||
132 | }; | 132 | }; |
133 | 133 | ||
134 | const setStatusIsFalse = () => { | 134 | const setStatusIsFalse = () => { |
135 | - hasBatchDelete.value = false; | ||
136 | - hasBatchPublish.value = false; | 135 | + (hasBatchDelete.value = false), (hasBatchPublish.value = false); |
137 | }; | 136 | }; |
138 | 137 | ||
139 | const setStatusIsTrue = () => { | 138 | const setStatusIsTrue = () => { |
140 | - hasBatchDelete.value = true; | ||
141 | - hasBatchPublish.value = true; | 139 | + (hasBatchDelete.value = true), (hasBatchPublish.value = true); |
142 | }; | 140 | }; |
143 | 141 | ||
144 | const rowSelection = { | 142 | const rowSelection = { |