mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
[FIX] *: move OwlError to common
This commit moves OwlError to its own file in the new common folder such that it is no longer associated with the runtime.
This commit is contained in:
committed by
Géry Debongnie
parent
9b1c270501
commit
9b1ec5dc0e
@@ -20,7 +20,7 @@ import {
|
||||
useLogLifecycle,
|
||||
nextAppError,
|
||||
} from "../helpers";
|
||||
import { OwlError } from "../../src/runtime/error_handling";
|
||||
import { OwlError } from "../../src/common/owl_error";
|
||||
|
||||
let fixture: HTMLElement;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { OwlError } from "../../src/runtime/error_handling";
|
||||
import { OwlError } from "../../src/common/owl_error";
|
||||
import { App, Component, mount, onMounted, useState, xml } from "../../src";
|
||||
import { makeTestFixture, nextAppError, nextTick, snapshotEverything } from "../helpers";
|
||||
|
||||
|
||||
+1
-1
@@ -19,7 +19,7 @@ import { helpers } from "../src/runtime/template_helpers";
|
||||
import { TemplateSet, globalTemplates } from "../src/runtime/template_set";
|
||||
import { BDom } from "../src/runtime/blockdom";
|
||||
import { compile } from "../src/compiler";
|
||||
import { OwlError } from "../src/runtime/error_handling";
|
||||
import { OwlError } from "../src/common/owl_error";
|
||||
|
||||
const mount = blockDom.mount;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { OwlError } from "../../src/runtime/error_handling";
|
||||
import { OwlError } from "../../src/common/owl_error";
|
||||
import {
|
||||
App,
|
||||
Component,
|
||||
|
||||
Reference in New Issue
Block a user