commit 50b03ab250e3e55fd924ac8354585d8eb341dfb4 Author: Dmitrii Filippov Date: Mon Oct 12 11:35:18 2020 +0200 Fix TseTse error The TseTse reports errors like: Property download is not declared on Type ActionNameToActionInfoMap. The type has a string index signature, but it is being accessed using a dotted property access. Same for other properties (rebase, cherrypick, etc...) Change-Id: I23e0b3d86d08fb5e6cbefb2730a017f22a03ae44 diff --git a/polygerrit-ui/app/types/common.ts b/polygerrit-ui/app/types/common.ts index 39985cf..854b134 100644 --- a/polygerrit-ui/app/types/common.ts +++ b/polygerrit-ui/app/types/common.ts @@ -467,6 +467,14 @@ export interface ActionNameToActionInfoMap { deleteEdit?: ActionInfo; edit?: ActionInfo; stopEdit?: ActionInfo; + download?: ActionInfo; + rebase?: ActionInfo; + cherrypick?: ActionInfo; + move?: ActionInfo; + revert?: ActionInfo; + revert_submission?: ActionInfo; + abandon?: ActionInfo; + submit?: ActionInfo; } /**