fix streamtitle change field on index

This commit is contained in:
gingervitis
2021-01-30 01:39:58 -08:00
parent 2c4bfab9db
commit b37b57feda
3 changed files with 13 additions and 7 deletions

View File

@@ -11,8 +11,8 @@ export interface SocialHandleDropdownItem {
export type FieldUpdaterFunc = (args: UpdateArgs) => void;
export interface UpdateArgs {
fieldName: string;
value: any;
fieldName?: string;
path?: string;
}