ui(fix): small Create Report dialog fixes (#4935)

This commit is contained in:
Dan Rukas 2025-04-08 17:21:08 -04:00 committed by GitHub
parent 47e491f1c8
commit 85f465968b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -76,7 +76,7 @@ function ReportDialog({ dataSources, hide, onSave, onCancel }: ReportDialogProps
<div className="flex gap-4"> <div className="flex gap-4">
{showDataSourceSelect && ( {showDataSourceSelect && (
<div className="mt-1 w-1/2"> <div className="mt-1 w-1/2">
<div className="mb-1 pl-1 font-light">Data source</div> <div className="mb-1 pl-1 text-base">Data source</div>
<Select <Select
value={selectedDataSource} value={selectedDataSource}
onValueChange={setSelectedDataSource} onValueChange={setSelectedDataSource}
@ -98,7 +98,7 @@ function ReportDialog({ dataSources, hide, onSave, onCancel }: ReportDialogProps
</div> </div>
)} )}
<div className={showDataSourceSelect ? 'mt-1 w-1/2' : 'mt-1 w-full'}> <div className={showDataSourceSelect ? 'mt-1 w-1/2' : 'mt-1 w-full'}>
<div className="mb-1 pl-1 font-light">Series</div> <div className="mb-1 pl-1 text-base">Series</div>
<Select <Select
value={selectedSeries} value={selectedSeries}
onValueChange={setSelectedSeries} onValueChange={setSelectedSeries}