Merge pull request #4344 from fufesou/feat/linux_exec_privileged

Feat/linux exec privileged
This commit is contained in:
RustDesk
2023-05-12 16:51:54 +08:00
committed by GitHub
4 changed files with 41 additions and 55 deletions

View File

@@ -24,13 +24,13 @@ class _InstallPageState extends State<InstallPage> {
void initState() {
super.initState();
Get.put<DesktopTabController>(tabController);
const lable = "install";
const label = "install";
tabController.add(TabInfo(
key: lable,
label: lable,
key: label,
label: label,
closable: false,
page: _InstallPageBody(
key: const ValueKey(lable),
key: const ValueKey(label),
)));
}