Skip to content

Commit

Permalink
Merge pull request #181 from fluent/align_in_tails_after_file_choosed
Browse files Browse the repository at this point in the history
Align in tails after file choosed
  • Loading branch information
yoshihara committed Apr 14, 2015
2 parents 5bfc7bd + 7ca5c21 commit cb8797e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/views/shared/vue/_in_tail_format.html.erb
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<script type="text/template" id="format-bundle">
<div class="form-group">
<div class="form-inline form-group">
<label>format</label>
<select name="setting[format]" v-model="format">
<select name="setting[format]" v-model="format" class="form-control">
<option v-repeat="selectableFormats" value="{{ $value }}" v-attr="selected: format==$value">{{ $value }}</option>
</select>
</div>
<div class="form-group" v-repeat="options">
<div class="form-inline form-group" v-repeat="options">
<label>{{ $value }} </label>
<input type="text" name="setting[{{ $value }}]" v-model="params.setting[$value]" size="100%" />
<input type="text" name="setting[{{ $value }}]" v-model="params.setting[$value]" size="100%" class="form-control" />
</div>
</script>

<div id="in_tail_format" class="form-group"
<div id="in_tail_format"
formatOptionsJson="<%= formats.to_json %>"
initialSelected="<%= initialSelected %>"
targetFile="<%= file %>"
Expand Down

0 comments on commit cb8797e

Please sign in to comment.