fix: update Examples and Include Library menu after ZIP install

Closes #659

Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
This commit is contained in:
Akos Kitta
2023-01-09 08:09:24 +01:00
committed by Akos Kitta
parent 287b2e3f41
commit b2bf368db9
4 changed files with 29 additions and 19 deletions

View File

@@ -59,7 +59,9 @@ export class NotificationServiceServerImpl
this.clients.forEach((client) => client.notifyPlatformDidUninstall(event));
}
notifyLibraryDidInstall(event: { item: LibraryPackage }): void {
notifyLibraryDidInstall(event: {
item: LibraryPackage | 'zip-install';
}): void {
this.clients.forEach((client) => client.notifyLibraryDidInstall(event));
}