feat: click to select hash (#198)

* feat: click to select hash

* chore: lint
This commit is contained in:
mochaaP 2020-07-19 07:30:46 +08:00 committed by GitHub
parent 58da4edf2f
commit b4527664d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -380,7 +380,10 @@ const Show: React.FC = () => {
</div>
<div className="row my-4">
<div className="col-4">Hash</div>
<div className="col-8 text-truncate" title={texture.hash}>
<div
className="col-8 text-truncate user-select-all"
title={texture.hash}
>
{isLoading ? <Skeleton /> : texture.hash}
</div>
</div>