Skip to content

Commit

Permalink
Rename component in Prime table
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Jul 30, 2024
1 parent d0d2da9 commit 15b3a6d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions webapp/src/components/SampleTablePrime.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<button class="btn btn-default" @click="createItemModalIsOpen = true">
Add an item
</button>
<button class="btn btn-default ml-2" @click="batchCreateSampleModalIsOpen = true">
<button class="btn btn-default ml-2" @click="batchCreateItemModalIsOpen = true">
Add batch of samples
</button>
</div>
Expand Down Expand Up @@ -110,12 +110,12 @@
</DataTable>
</div>
<CreateItemModal v-model="createItemModalIsOpen" />
<BatchCreateSampleModal v-model="batchCreateSampleModalIsOpen" />
<BatchCreateItemModal v-model="batchCreateItemModalIsOpen" />
</template>

<script>
import CreateItemModal from "@/components/CreateItemModal";
import BatchCreateSampleModal from "@/components/BatchCreateSampleModal";
import BatchCreateItemModal from "@/components/BatchCreateItemModal";
import DataTable from "primevue/datatable";
import Column from "primevue/column";
Expand All @@ -134,7 +134,7 @@ import Creators from "@/components/Creators";
export default {
components: {
CreateItemModal,
BatchCreateSampleModal,
BatchCreateItemModal,
DataTable,
Column,
IconField,
Expand All @@ -148,7 +148,7 @@ export default {
data() {
return {
createItemModalIsOpen: false,
batchCreateSampleModalIsOpen: false,
batchCreateItemModalIsOpen: false,
isSampleFetchError: false,
itemsSelected: [],
expandedRows: [],
Expand Down

0 comments on commit 15b3a6d

Please sign in to comment.