Make the created link actually a link
This commit is contained in:
parent
820d90ee86
commit
33b08da026
@ -31,6 +31,11 @@ limitations under the License.
|
||||
|
||||
> a {
|
||||
color: $foreground;
|
||||
font-weight: bold;
|
||||
font-size: 24px;
|
||||
line-height: 32px;
|
||||
text-align: left;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.createLinkReset {
|
||||
|
@ -128,7 +128,9 @@ const LinkCreatedTile: React.FC<ILinkCreatedTileProps> = (props) => {
|
||||
<div>New link</div>
|
||||
<img src={refreshIcon} alt="Go back to matrix.to home page" />
|
||||
</button>
|
||||
<h1 className="linkHeader matrixIdentifier">{props.link}</h1>
|
||||
<a className="matrixIdentifier" href={props.link}>
|
||||
{props.link}
|
||||
</a>
|
||||
<Button
|
||||
flashChildren={'Copied'}
|
||||
icon={copyIcon}
|
||||
|
Loading…
Reference in New Issue
Block a user