|
|
@ -3,7 +3,7 @@ |
|
|
|
<div class="file-table__column file-table__column--select" onchange={ (event) => { props.handleMarked(event, this) } }> |
|
|
|
<input type="checkbox" value="true" /> |
|
|
|
</div> |
|
|
|
<div class="file-table__column file-table__column--filename" onclick={ (event) => { props.handleClick(event, this) } }> |
|
|
|
<div class="file-table__column file-table__column--filename"> |
|
|
|
{ props.file.filename } |
|
|
|
</div> |
|
|
|
<div class="file-table__column file-table__column--size"> |
|
|
@ -12,6 +12,22 @@ |
|
|
|
<div class="file-table__column file-table__column--date"> |
|
|
|
<div class="file-table__inner has-text-right">{ props.file.meta.updated_at }</div> |
|
|
|
</div> |
|
|
|
<div class="file-table__column"> |
|
|
|
<div class="file-table__inner has-text-right"> |
|
|
|
<svg class="icon fill-success ml-1 mr-1" aria-hidden="true"> |
|
|
|
<use xlink:href="/symbol-defs.svg#icon-eye"></use> |
|
|
|
</svg> |
|
|
|
<svg class="icon fill-success ml-1 mr-1" aria-hidden="true"> |
|
|
|
<use xlink:href="/symbol-defs.svg#icon-download"></use> |
|
|
|
</svg> |
|
|
|
<svg class="icon fill-danger mr-1" aria-hidden="true"> |
|
|
|
<use xlink:href="/symbol-defs.svg#icon-delete"></use> |
|
|
|
</svg> |
|
|
|
<svg class="icon fill-grey mr-1" aria-hidden="true"> |
|
|
|
<use xlink:href="/symbol-defs.svg#icon-build"></use> |
|
|
|
</svg> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<script> |
|
|
|
|
|
|
|