Skip to content

Commit

Permalink
fix(qseow): Don't throw unwarranted errors when importing master dime…
Browse files Browse the repository at this point in the history
…nsions

Fixes #542
  • Loading branch information
mountaindude committed Nov 17, 2024
1 parent beec900 commit c61409e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/cmd/qseow/import-masteritem-excel.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const updateDimension = async (
[existingColorMapModel] = await Promise.all([existingColorMapPromise]);
existingColorMapLayout = await existingColorMapModel.getLayout();
} catch (err) {
catchLog(`No per-value color map exists for existing dimension "${existingDimensionLayout.qMeta.title}"`, err);
logger.verbose(`No per-value color map exists for existing dimension "${existingDimensionLayout.qMeta.title}"`);
}

// Do we have new per-value color data?
Expand Down

0 comments on commit c61409e

Please sign in to comment.