Fis test pipeline
This commit is contained in:
parent
d21d775764
commit
b7954dd79e
@ -41,7 +41,7 @@ jobs:
|
|||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version-file: '${{ gitea.workspace }}/go.mod'
|
go-version-file: '${{ gitea.workspace }}/scnserver/go.mod'
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
- name: Print Go Version
|
- name: Print Go Version
|
||||||
|
@ -65,6 +65,8 @@ class _AppBarFilterDialogState extends State<AppBarFilterDialog> {
|
|||||||
_buildFilterItem(context, FontAwesomeIcons.bolt, 'Priority', _showPriorityModal),
|
_buildFilterItem(context, FontAwesomeIcons.bolt, 'Priority', _showPriorityModal),
|
||||||
Divider(),
|
Divider(),
|
||||||
_buildFilterItem(context, FontAwesomeIcons.gearCode, 'Key', _showKeytokenModal),
|
_buildFilterItem(context, FontAwesomeIcons.gearCode, 'Key', _showKeytokenModal),
|
||||||
|
Divider(),
|
||||||
|
_buildFilterItem(context, FontAwesomeIcons.magnifyingGlassPlus, 'Search (Plain)', _showPlainSearchModal),
|
||||||
SizedBox(height: 4),
|
SizedBox(height: 4),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@ -113,4 +115,8 @@ class _AppBarFilterDialogState extends State<AppBarFilterDialog> {
|
|||||||
void _showTimeModal(BuildContext context) {
|
void _showTimeModal(BuildContext context) {
|
||||||
showDialog<void>(context: context, builder: (BuildContext context) => FilterModalTime());
|
showDialog<void>(context: context, builder: (BuildContext context) => FilterModalTime());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _showPlainSearchModal(BuildContext context) {
|
||||||
|
//TODO showDialog<void>(context: context, builder: (BuildContext context) => FilterModalSearchPlain());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user