imbric-theme 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
@@ -894,18 +894,28 @@ export const RowTable = ({
|
|
894
894
|
itemTd.typeFilterSub === 'date_only' ?
|
895
895
|
|
896
896
|
<td className={getStyles('td')} key={[itemTd.accessor] + (indexTd + index)}>
|
897
|
-
|
898
|
-
|
899
|
-
|
897
|
+
|
898
|
+
{item[itemTd.accessor] ? (
|
899
|
+
|
900
|
+
<Moment format="DD/MM/YYYY">
|
901
|
+
{item[itemTd.accessor]}
|
902
|
+
</Moment>
|
903
|
+
|
904
|
+
) : null}
|
905
|
+
|
900
906
|
</td>
|
901
907
|
|
902
908
|
:
|
903
909
|
|
904
910
|
<td className={getStyles('td')} key={[itemTd.accessor] + (indexTd + index)}>
|
905
911
|
{/* <Moment format="DD/MM/YYYY hh:mm:ss"> */}
|
906
|
-
|
907
|
-
|
908
|
-
|
912
|
+
{item[itemTd.accessor] ? (
|
913
|
+
|
914
|
+
<Moment format="DD/MM/YYYY HH:mm">
|
915
|
+
{item[itemTd.accessor]}
|
916
|
+
</Moment>
|
917
|
+
|
918
|
+
) : null}
|
909
919
|
</td>
|
910
920
|
:
|
911
921
|
|
@@ -984,8 +994,9 @@ export const RowTable = ({
|
|
984
994
|
))}
|
985
995
|
</tr>
|
986
996
|
|
987
|
-
))
|
988
|
-
|
997
|
+
))
|
998
|
+
}
|
999
|
+
</tbody >
|
989
1000
|
// </table>
|
990
1001
|
|
991
1002
|
// </div>
|