Skip to content

Commit ae53048

Browse files
authored
Merge pull request #39 from janniks/test
Fix bug
2 parents 6993c11 + 4f481df commit ae53048

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"scripts": {
1717
"serve": "vue-cli-service serve dev/serve.js",
1818
"example": "nuxt example",
19+
"example:pack": "npm pack && cd example && npm install && npm install ../*.tgz && npm run build && npm run generate",
1920
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
2021
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
2122
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",

src/blocks/decorator.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
<s v-else-if="decoratorKey === 's'">
2323
<NotionDecorator :content="nextContent" v-bind="pass" />
2424
</s>
25-
<s v-else-if="decoratorKey === '‣'"> TEST </s>
2625
<a
2726
v-else-if="decoratorKey === 'a'"
2827
class="notion-link"
@@ -36,12 +35,10 @@
3635

3736
<script>
3837
import Blockable, { blockProps } from "@/lib/blockable";
39-
import NotionTextRenderer from "@/blocks/helpers/text-renderer";
4038
4139
export default {
4240
extends: Blockable,
4341
name: "NotionDecorator",
44-
components: { NotionTextRenderer },
4542
props: { ...blockProps, content: Array },
4643
computed: {
4744
text() {

0 commit comments

Comments
 (0)