Skip to content

Commit

Permalink
fix error This line has a length of 148. Maximum allowed is 125
Browse files Browse the repository at this point in the history
  • Loading branch information
YukaUU committed Jul 18, 2024
1 parent 17e6f80 commit 037c693
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/viewer/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,8 @@ function initCore() {


// add center position and zoom
if (data.geometries.features[data.selected].viewerStates != null || data.geometries.features[data.selected].viewerStates != undefined) {
if (data.geometries.features[data.selected].viewerStates != null ||
data.geometries.features[data.selected].viewerStates != undefined) {
const decimalPlaces = 3;
attributes.X = data.geometries.features[data.selected].viewerStates.x,
attributes.Y = data.geometries.features[data.selected].viewerStates.y,
Expand Down

0 comments on commit 037c693

Please sign in to comment.