Skip to content

Commit

Permalink
change "not configured" message appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Belostotskiy committed Jun 15, 2018
1 parent 2e2c6c7 commit 40b7af1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/app-fields/FieldScript.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import type {FieldConfigItem} from './types';
import {getBaseUrl} from '../service/ajaxHelper';

import {JiraMessages, FieldMessages, ErrorMessages, CommonMessages} from '../i18n/common.i18n';
import {FieldError} from '../common/ak/FieldError';
import {ErrorMessage} from '../common/ak/messages';
import {ScriptParameters} from '../common/script';
import {WatchableScript} from '../common/script/WatchableScript';
import {WatchActionCreators} from '../common/redux';
Expand Down Expand Up @@ -80,7 +80,7 @@ export class FieldScript extends React.PureComponent<Props> {
/>
]}
>
{!script.uuid && <FieldError error={ErrorMessages.notConfigured}/>}
{!script.uuid && <ErrorMessage title={ErrorMessages.notConfigured}/>}
<ScriptParameters
params={[
{
Expand Down

0 comments on commit 40b7af1

Please sign in to comment.