You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Important: Non-official plugins may not be published by the actual projects they are related to, nor by Headlamp's maintainers. Are you sure you want to show them?"
194
+
handleClose={()=>setIsConfirmOpen(false)}
195
+
onConfirm={()=>{
196
+
onOfficialSwitchChange(true);
197
+
}}
198
+
/>
199
+
</>
200
+
);
154
201
}
155
202
156
203
exportfunctionPurePluginList({
@@ -160,11 +207,21 @@ export function PurePluginList({
160
207
search,
161
208
onSearchChange,
162
209
onPageChange,
210
+
isOfficialSwitchChecked,
211
+
onOfficialSwitchChange,
163
212
}: PurePluginListProps){
164
213
return(
165
214
<>
166
215
<SectionHeader
167
216
title="Plugins"
217
+
titleSideActions={[
218
+
<Boxpl={2}>
219
+
<OfficialSwitch
220
+
isChecked={isOfficialSwitchChecked}
221
+
onChange={onOfficialSwitchChange}
222
+
/>
223
+
</Box>
224
+
]}
168
225
actions={[
169
226
<TextField
170
227
key="search"
@@ -218,6 +275,11 @@ export function PluginList() {
0 commit comments