Browse Source

SONAR-12470 Wrong edition in footer at startup

tags/8.1.0.31237
Philippe Perrin 4 years ago
parent
commit
08d2dc1e42

+ 1
- 1
server/sonar-web/src/main/js/app/types.d.ts View File

@@ -97,7 +97,7 @@ declare namespace T {
branchesEnabled?: boolean;
canAdmin?: boolean;
defaultOrganization: string;
edition: EditionKey;
edition: EditionKey | undefined;
globalPages?: Extension[];
organizationsEnabled?: boolean;
productionDatabase: boolean;

+ 1
- 2
server/sonar-web/src/main/js/store/appState.ts View File

@@ -17,7 +17,6 @@
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import { EditionKey } from '../apps/marketplace/utils';
import { ActionType } from './utils/actions';

export const enum Actions {
@@ -47,7 +46,7 @@ const defaultValue: T.AppState = {
authenticationError: false,
authorizationError: false,
defaultOrganization: '',
edition: EditionKey.community,
edition: undefined,
organizationsEnabled: false,
productionDatabase: true,
qualifiers: [],

Loading…
Cancel
Save