Linter fixes
This commit is contained in:
parent
a1313ae1c5
commit
9d088916a9
2 changed files with 19 additions and 11 deletions
|
|
@ -19,10 +19,14 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-width-expand">
|
<div class="uk-width-expand">
|
||||||
<h3 class="uk-card-title uk-margin-remove-bottom">{{ name }}</h3>
|
<h3 class="uk-card-title uk-margin-remove-bottom">{{ name }}</h3>
|
||||||
<p class="uk-text-meta uk-margin-remove-top"><time datetime="2016-04-01T19:00">April 01, 2016</time></p>
|
<p class="uk-text-meta uk-margin-remove-top">
|
||||||
|
<slot name="subtitle"></slot>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-width-auto">
|
<div class="uk-width-auto">
|
||||||
<button class="uk-button" @click="$emit('click')"><slot name="buttonText">Launch</slot></button>
|
<button class="uk-button" @click="$emit('click')">
|
||||||
|
<slot name="buttonText">Launch</slot>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,9 @@
|
||||||
max="100"
|
max="100"
|
||||||
></progress>
|
></progress>
|
||||||
|
|
||||||
<div class="uk-flex uk-flex-column uk-margin uk-margin-left uk-margin-right">
|
<div
|
||||||
|
class="uk-flex uk-flex-column uk-margin uk-margin-left uk-margin-right"
|
||||||
|
>
|
||||||
<imjoy-plugin-card
|
<imjoy-plugin-card
|
||||||
name="Load From URL"
|
name="Load From URL"
|
||||||
icon-u-r-l="https://imjoy.io/static/img/imjoy-icon.svg"
|
icon-u-r-l="https://imjoy.io/static/img/imjoy-icon.svg"
|
||||||
|
|
@ -592,7 +594,9 @@ export default {
|
||||||
return axios.post(this.moveActionUri, payload).then(pollAction);
|
return axios.post(this.moveActionUri, payload).then(pollAction);
|
||||||
},
|
},
|
||||||
async getInstrumentSettings() {
|
async getInstrumentSettings() {
|
||||||
return axios.get(`${this.baseUri}/api/v2/instrument/settings/`).then(r => r.data);
|
return axios
|
||||||
|
.get(`${this.baseUri}/api/v2/instrument/settings/`)
|
||||||
|
.then(r => r.data);
|
||||||
},
|
},
|
||||||
async setInstrumentSettings(payload) {
|
async setInstrumentSettings(payload) {
|
||||||
return axios.put(`${this.baseUri}/api/v2/instrument/settings/`, payload);
|
return axios.put(`${this.baseUri}/api/v2/instrument/settings/`, payload);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue