|
134 | 134 | </div> |
135 | 135 | </div> |
136 | 136 |
|
137 | | - <v-row v-if="plot_available"> |
138 | | - <!-- NOTE: the internal bqplot widget defaults to 480 pixels, so if choosing something else, |
139 | | - we will likely need to override that with custom CSS rules in order to avoid the initial |
140 | | - rendering of the plot from overlapping with content below --> |
141 | | - <jupyter-widget :widget="radial_plot" style="width: 100%; height: 480px" /> |
142 | | - </v-row> |
143 | | - |
144 | | - <div v-if="plot_available && fit_radial_profile"> |
145 | | - <j-plugin-section-header>Gaussian Fit Results</j-plugin-section-header> |
| 137 | + <div v-if="result_available"> |
| 138 | + <j-plugin-section-header>Photometry Results</j-plugin-section-header> |
146 | 139 | <v-row no-gutters> |
147 | 140 | <v-col cols=6><U>Result</U></v-col> |
148 | 141 | <v-col cols=6><U>Value</U></v-col> |
149 | 142 | </v-row> |
150 | 143 | <v-row |
151 | | - v-for="item in fit_results" |
| 144 | + v-for="item in results" |
152 | 145 | :key="item.function" |
153 | 146 | no-gutters> |
154 | 147 | <v-col cols=6> |
|
158 | 151 | </v-row> |
159 | 152 | </div> |
160 | 153 |
|
161 | | - <div v-if="result_available"> |
162 | | - <j-plugin-section-header>Photometry Results</j-plugin-section-header> |
| 154 | + <v-row v-if="plot_available"> |
| 155 | + <!-- NOTE: the internal bqplot widget defaults to 480 pixels, so if choosing something else, |
| 156 | + we will likely need to override that with custom CSS rules in order to avoid the initial |
| 157 | + rendering of the plot from overlapping with content below --> |
| 158 | + <jupyter-widget :widget="radial_plot" style="width: 100%; height: 480px" /> |
| 159 | + </v-row> |
| 160 | + |
| 161 | + <div v-if="plot_available && fit_radial_profile"> |
| 162 | + <j-plugin-section-header>Gaussian Fit Results</j-plugin-section-header> |
163 | 163 | <v-row no-gutters> |
164 | 164 | <v-col cols=6><U>Result</U></v-col> |
165 | 165 | <v-col cols=6><U>Value</U></v-col> |
166 | 166 | </v-row> |
167 | 167 | <v-row |
168 | | - v-for="item in results" |
| 168 | + v-for="item in fit_results" |
169 | 169 | :key="item.function" |
170 | 170 | no-gutters> |
171 | 171 | <v-col cols=6> |
|
0 commit comments