Make the created link actually a link

This commit is contained in:
J. Ryan Stinnett 2020-10-28 16:44:39 +00:00
parent 820d90ee86
commit 33b08da026
2 changed files with 8 additions and 1 deletions

View File

@ -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 {

View File

@ -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}