Skip to content

Commit

Permalink
style: run client formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley committed Feb 8, 2024
1 parent b15ecd5 commit ac81c79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export default Vue.extend({
this.metadata.bands = ['red', 'green', 'blue', 'alpha'];
break;
default:
this.metadata.bands = [...Array(this.metadata.bandCount).keys()].map((i) => `Band ${i+1}`)
this.metadata.bands = [...Array(this.metadata.bandCount).keys()].map((i) => `Band ${i + 1}`);
}
} else {
this.metadata.bands = Object.values(this.metadata.bands).map(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
'currentMin',
'currentMax',
'autoRange',
'active',
'active'
],
emits: ['updateMin', 'updateMax', 'updateAutoRange'],
data() {
Expand Down Expand Up @@ -65,7 +65,7 @@ export default {
},
methods: {
fetchHistogram() {
if (!this.active) return
if (!this.active) return;
if (this.framedelta !== undefined) {
restRequest({
type: 'GET',
Expand Down

0 comments on commit ac81c79

Please sign in to comment.