Allow users to turn off analytical ttl in settings tab

This commit is contained in:
Victor Meng 2022-03-16 22:43:37 -07:00
parent d1587ef033
commit e82a904308

View File

@ -213,7 +213,7 @@ export class SubSettingsComponent extends React.Component<SubSettingsComponentPr
);
private analyticalTtlChoiceGroupOptions: IChoiceGroupOption[] = [
{ key: TtlType.Off, text: "Off", disabled: true },
{ key: TtlType.Off, text: "Off" },
{ key: TtlType.OnNoDefault, text: "On (no default)" },
{ key: TtlType.On, text: "On" },
];