mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
92f3f8af08
* feat: add env * fix: create environment form * feat: create environment * feat: add deletion protection * fix: lift up state * feat: add ability to update environment * fix: remove env reset * fix: remove link * feat: add drag and drop sorting * fix: remove unused imports * feat: add methods to toggle env on/off * feat: only make api call on drop * fix: disabled text * fix: add disabled indicator * fix: add edit env payload * fix: add E flag * fix: cleanup * fix: update snapshots * fix: remove useFeature * fix: change property to errorText * fix: update tests * fix: change menu * fix: update snapshots * feat: toggle view v2 * fix: handle error on sort order api call * fix: remove unused import * fix: useFeature * fix: update tests * fix: console logs * fix: use try catch * fix: update snapshots
24 lines
638 B
TypeScript
24 lines
638 B
TypeScript
import { LibraryBooks } from '@material-ui/icons';
|
|
|
|
export const defaultValue = {
|
|
name: 'Unleash',
|
|
version: '3.x',
|
|
environment: '',
|
|
slogan: 'The enterprise ready feature toggle service.',
|
|
flags: { P: false, C: false, E: false },
|
|
links: [
|
|
{
|
|
value: 'Documentation',
|
|
icon: LibraryBooks,
|
|
href: 'https://docs.getunleash.io/docs?source=oss',
|
|
title: 'User documentation',
|
|
},
|
|
{
|
|
value: 'GitHub',
|
|
icon: 'c_github',
|
|
href: 'https://github.com/Unleash',
|
|
title: 'Source code on GitHub',
|
|
},
|
|
],
|
|
};
|