1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

removed text posts line at the top

This commit is contained in:
Fedor Katurov 2021-10-29 16:56:42 +07:00
parent 3f16ab203e
commit ef669cab51
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ const LabLayout: FC<IProps> = () => {
}
dispatch(labGetMore());
}, [nodes, count]);
}, [nodes, count, dispatch]);
const isInitialLoading = is_loading && !nodes.length;

View file

@ -95,7 +95,7 @@ export const LAB_PREVIEW_LAYOUT: Record<string, FC<INodeComponentProps>[]> = {
[NODE_TYPES.IMAGE]: [LabImage, LabPad, LabNodeTitle, LabDescription],
[NODE_TYPES.VIDEO]: [LabVideo, LabPad, LabNodeTitle, LabDescription],
[NODE_TYPES.AUDIO]: [LabPad, LabNodeTitle, LabPad, NodeAudioImageBlock, LabAudio, LabPad],
[NODE_TYPES.TEXT]: [LabLine, LabPad, LabNodeTitle, LabPad, LabText, LabPad],
[NODE_TYPES.TEXT]: [LabPad, LabNodeTitle, LabPad, LabText, LabPad],
};
export const NODE_HEADS: INodeComponents = {