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