diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-09-25 14:46:14 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-11-19 15:56:38 +0100 |
commit | b3ff35a75cf04e4aba2712a9d0897257cf79af82 (patch) | |
tree | 51f5b0b0c61c6b58ad0f866179c900bc40c2a0e8 /app/javascript/flavours/glitch/features/composer/direct_warning | |
parent | a77ee0bb6dcafffebc55db145ef4bac8038ae2a1 (diff) |
Move URLs to backend in their own file
Diffstat (limited to 'app/javascript/flavours/glitch/features/composer/direct_warning')
-rw-r--r-- | app/javascript/flavours/glitch/features/composer/direct_warning/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/composer/direct_warning/index.js b/app/javascript/flavours/glitch/features/composer/direct_warning/index.js index d1febdd1b..3b1369acd 100644 --- a/app/javascript/flavours/glitch/features/composer/direct_warning/index.js +++ b/app/javascript/flavours/glitch/features/composer/direct_warning/index.js @@ -2,6 +2,7 @@ import React from 'react'; import Motion from 'flavours/glitch/util/optional_motion'; import spring from 'react-motion/lib/spring'; import { defineMessages, FormattedMessage } from 'react-intl'; +import { termsLink} from 'flavours/glitch/util/backend_links'; // This is the spring used with our motion. const motionSpring = spring(1, { damping: 35, stiffness: 400 }); @@ -42,7 +43,8 @@ export default function ComposerDirectWarning () { }} > <span> - <FormattedMessage {...messages.disclaimer} /> <a href='/terms' target='_blank'><FormattedMessage {...messages.learn_more} /></a> + <FormattedMessage {...messages.disclaimer} /> + { termsLink !== undefined && <a href={termsLink} target='_blank'><FormattedMessage {...messages.learn_more} /></a> } </span> </div> )} |