From c216a179b625b8c24dfcffafbca6c141825f0d32 Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Tue, 17 Nov 2020 12:44:27 -0500 Subject: [PATCH] Add label via start adornment w/ workaround --- src/components/QueueSelector/QueueSelector.js | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/components/QueueSelector/QueueSelector.js b/src/components/QueueSelector/QueueSelector.js index a57b69a..c17c7c9 100644 --- a/src/components/QueueSelector/QueueSelector.js +++ b/src/components/QueueSelector/QueueSelector.js @@ -1,6 +1,6 @@ import React from "react"; import PropTypes from "prop-types"; -import { TextField, Checkbox} from "@material-ui/core"; +import { TextField, Checkbox, InputAdornment } from "@material-ui/core"; import { Autocomplete } from "@material-ui/lab"; import CheckBoxOutlineBlankIcon from '@material-ui/icons/CheckBoxOutlineBlank'; import CheckBoxIcon from '@material-ui/icons/CheckBox'; @@ -17,6 +17,20 @@ export default function QueueSelector({ queues, selectedQueues, setSelectedQueue + + Active Queues: + + {params.InputProps.startAdornment} + + ), + }} /> ); }}