Skip to content

Commit

Permalink
Merge pull request #1061 from biigle/fix-ui-regression
Browse files Browse the repository at this point in the history
Fix regression by renaming scss class
  • Loading branch information
mzur authored Jan 28, 2025
2 parents dfa70da + ad17797 commit e7bd08d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/assets/sass/sync/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
}
}

.typeahead--block {
.typeahead--sync {
margin-bottom: 20px;
}
2 changes: 1 addition & 1 deletion resources/views/import/showVolume.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<p>
The selected volumes will be attached to this project during import.
</p>
<typeahead class="typeahead--block" v-bind:items="availableProjects" placeholder="Project name" title="Select a target project" v-on:select="selectTargetProject" v-bind:clear-on-select="true" more-info="description"></typeahead>
<typeahead class="typeahead--block typeahead--sync" v-bind:items="availableProjects" placeholder="Project name" title="Select a target project" v-on:select="selectTargetProject" v-bind:clear-on-select="true" more-info="description"></typeahead>
<div v-if="targetProject" class="panel panel-info" v-cloak>
<div class="panel-body text-info">
Target project: <strong v-text="targetProject.name"></strong>
Expand Down

0 comments on commit e7bd08d

Please sign in to comment.