Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kurudrive committed Feb 6, 2024
1 parent 041ebe4 commit fd4a0c5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/blocks/_pro/tab/save.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ export default function save(props) {

let tabList = '';
let tabListInner = '';
if (Object.keys(tabOption).length !== 0 && tabOption.listArray.length !== 0) {
if (
Object.keys(tabOption).length !== 0 &&
tabOption.listArray.length !== 0
) {
tabListInner = tabOption.listArray.map((option, index) => {
let activeLabelClass = '';
if (firstActive === index) {
Expand Down

0 comments on commit fd4a0c5

Please sign in to comment.