mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
Cleanup outdated code
This commit is contained in:
parent
470f5618b3
commit
c74c730b8e
|
@ -14,7 +14,6 @@ import {
|
|||
} from './../constants';
|
||||
import {
|
||||
closeManualChatModal,
|
||||
getManualChatDialog,
|
||||
getManualChatMessages,
|
||||
getManualChatModal,
|
||||
getManualChatModalLogs,
|
||||
|
|
|
@ -106,7 +106,7 @@ watch(defaultLocale, (newLocale) => {
|
|||
</keep-alive>
|
||||
<component :is="Component" v-else />
|
||||
</router-view>
|
||||
<div :class="$style.contentFooter" v-if="hasContentFooter">
|
||||
<div v-if="hasContentFooter" :class="$style.contentFooter">
|
||||
<router-view name="footer" />
|
||||
</div>
|
||||
</div>
|
||||
|
@ -168,7 +168,6 @@ watch(defaultLocale, (newLocale) => {
|
|||
height: auto;
|
||||
z-index: 10;
|
||||
width: 100%;
|
||||
background: white;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -154,13 +154,7 @@ export function useChatMessaging({
|
|||
source: 'RunData.ManualChatMessage',
|
||||
message,
|
||||
});
|
||||
// const response = await runWorkflow({
|
||||
// triggerNode: triggerNode.name,
|
||||
// nodeData,
|
||||
// source: 'RunData.ManualChatMessage',
|
||||
// });
|
||||
|
||||
// workflowsStore.appendChatMessage(message);
|
||||
if (!response?.executionId) {
|
||||
showError(
|
||||
new Error('It was not possible to start workflow!'),
|
||||
|
|
|
@ -261,13 +261,8 @@ onMounted(() => {
|
|||
padding-top: var(--spacing-s);
|
||||
padding-left: var(--spacing-m);
|
||||
font-size: var(--font-size-m);
|
||||
// max-height: 100%;
|
||||
}
|
||||
.block {
|
||||
// border: 1px solid var(--color-foreground-base);
|
||||
// background: var(--color-background-xlight);
|
||||
// padding: var(--spacing-xs);
|
||||
// border-radius: 4px;
|
||||
margin-top: var(--spacing-xl);
|
||||
}
|
||||
:root .blockContent {
|
||||
|
|
Loading…
Reference in a new issue