Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ describe('validateParamsForWarnings', () => {
];

test('returns warnings when publicUrl is not set and there are publicUrl variables used', () => {
const warning = 'server.publicBaseUrl is not set. Actions will use relative URLs.';
const warning =
'server.publicBaseUrl is not set. Generated URLs will be either relative or empty.';
expect(
validateParamsForWarnings('Test for {{context.url}}', undefined, actionVariables)
).toEqual(warning);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import Mustache from 'mustache';
const publicUrlWarning = i18n.translate(
'xpack.triggersActionsUI.sections.actionTypeForm.warning.publicUrl',
{
defaultMessage: 'server.publicBaseUrl is not set. Actions will use relative URLs.',
defaultMessage:
'server.publicBaseUrl is not set. Generated URLs will be either relative or empty.',
}
);

Expand Down