Skip to content
Snippets Groups Projects
Commit 65b2f571 authored by 조 지현's avatar 조 지현
Browse files

pipeline checkbox label

parent 76b251f7
No related branches found
No related tags found
1 merge request!2merge 2
......@@ -91,8 +91,8 @@ export default {
<fieldset>
<legend>파이프라인</legend>
<div v-for="pipeline in pipelineFilter" :key="pipeline.key">
<input type="checkbox" id="coding" v-on:click="setPipelineSelected(pipeline.key)" :value="pipeline.key" />
<label for="coding">{{pipeline.name}}</label>
<input type="checkbox" :id="pipeline.name" v-on:click="setPipelineSelected(pipeline.key)" :value="pipeline.key" />
<label :for="pipeline.name">{{pipeline.name}}</label>
</div>
</fieldset>
<p>Selected pipeline names: {{ pipelineSelected }}</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment