tweaking thead layout

This commit is contained in:
Roland Osborne 2023-03-03 10:53:26 -08:00
parent ef1c81343d
commit 166ef7ef2c
2 changed files with 11 additions and 1 deletions

View File

@ -167,7 +167,7 @@ export function useChannelContext() {
const topicId = await addChannelTopic(server, token, channelId, null, null, null);
upload.actions.addTopic(server, token, channelId, topicId, files, async (assets) => {
const subject = message(assets);
await setChannelTopicSubject(server, token, channelId, topicId, type, sbuject);
await setChannelTopicSubject(server, token, channelId, topicId, type, subject);
}, async () => {
try {
await removeChannelTopic(server, token, channelId, topicId);

View File

@ -77,5 +77,15 @@ export const styles = StyleSheet.create({
fontSize: 18,
color: Colors.disabled,
},
topics: {
paddingBottom: 32,
},
conversation: {
flexShrink: 1,
flexGrow: 1,
minHeight: 0,
paddingTop: 8,
},
});