Skip to content

Commit

Permalink
Client format.
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed May 14, 2019
1 parent c4df90d commit 04f2028
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion client/galaxy/scripts/components/Tags/tagService.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ export class TagService {
async delete(rawTag) {
const { id, itemClass, context } = this;
const tag = createTag(rawTag);
const url = `/tag/remove_tag_async?item_id=${id}&item_class=${itemClass}&context=${context}&tag_name=${tag.text}`;
const url = `/tag/remove_tag_async?item_id=${id}&item_class=${itemClass}&context=${context}&tag_name=${
tag.text
}`;
const response = await axios.get(url);
if (response.status !== 200) {
throw new Error(`Unable to delete tag: ${tag}`);
Expand Down
3 changes: 2 additions & 1 deletion client/galaxy/scripts/components/login/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<a id="register-toggle" href="#" @click.prevent="toggleLogin">Register here.</a>
</span>
<span v-else>
Registration for this Galaxy instance is disabled. Please contact an administrator for assistance.
Registration for this Galaxy instance is disabled. Please contact an administrator for
assistance.
</span>
</b-card-footer>
</b-card>
Expand Down
2 changes: 1 addition & 1 deletion client/galaxy/scripts/galaxy.interactive_environments.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,4 +255,4 @@ export default {
test_ie_availability,
load_when_ready,
keepAlive
};
};

0 comments on commit 04f2028

Please sign in to comment.