diff --git a/CHANGELOG.md b/CHANGELOG.md index 126a057..f357346 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Added + +* Clickable icon next to run names to change to the view of all wells in that run + ## [2.3.0] - 2024-07-30 ### Added diff --git a/frontend/src/components/WellTable.vue b/frontend/src/components/WellTable.vue index 29c0699..526f08b 100644 --- a/frontend/src/components/WellTable.vue +++ b/frontend/src/components/WellTable.vue @@ -3,16 +3,18 @@ * Renders a table for a list of wells and generates buttons for selecting wells */ import { combineLabelWithPlate, listStudiesForTooltip } from "../utils/text.js" -import { ElTooltip, ElButton } from "element-plus"; +import { ElTooltip, ElButton } from "element-plus" +import { Top } from "@element-plus/icons-vue" const tooltipDelay = 500 const studyNameHighlight = 'BIOSCAN UK for flying insects' defineProps({ - wellCollection: Object + wellCollection: Object, + allowNav: Boolean, }) -defineEmits(['wellSelected']) +defineEmits(['wellSelected', 'runSelected'])