Skip to content

Commit

Permalink
Removed using this in template
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Oct 24, 2023
1 parent 1b8af4d commit ab92472
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/AnalysisTools/HistogramTool.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
title="Get histogram from the selected rectangle region."
class="button"
:class="{ 'is-loading': region_histogram_loading }"
:disabled="!this.current_image.fits_filename"
:disabled="!current_image.fits_filename"
@click="getHistogram(true)"
>
inspect region
Expand All @@ -16,7 +16,7 @@
<button
class="button"
:class="{ 'is-loading': image_histogram_loading }"
:disabled="!this.current_image.fits_filename"
:disabled="!current_image.fits_filename"
@click="getHistogram(false)"
>
inspect image
Expand Down
4 changes: 2 additions & 2 deletions src/components/AnalysisTools/ImageStatisticsViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
title="Only inspect the selected rectangle region."
class="button"
:class="{'is-loading':region_stats_loading}"
:disabled="!this.current_image.fits_filename"
:disabled="!current_image.fits_filename"
@click="getRegionStats(true)"
>
inspect region
Expand All @@ -16,7 +16,7 @@
<button
class="button"
:class="{'is-loading':image_stats_loading}"
:disabled="!this.current_image.fits_filename"
:disabled="!current_image.fits_filename"
@click="getRegionStats(false)"
>
inspect image
Expand Down
2 changes: 1 addition & 1 deletion src/components/AnalysisTools/LineProfileInspection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
title="first draw a line on the image to inspect"
class="button"
:class="{'is-loading': analysisInProgress}"
:disabled="!this.current_image.fits_filename"
:disabled="!current_image.fits_filename"
@click="getLineProfile"
>
get line profile
Expand Down

0 comments on commit ab92472

Please sign in to comment.