Skip to content

Commit 7d7a7db

Browse files
committed
1.1.7
1 parent 293e1f2 commit 7d7a7db

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
[//]: # (Don't use <tags>)
22

3+
## v1.1.7
4+
5+
> `2023-11-17`
6+
7+
### 🐞 Bug Fixes
8+
- Don't rehighlight code on export view
9+
- Missing return from FileElement in plugin
10+
311
## v1.1.6
412

513
> `2023-11-06`

index.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": false,
33
"name": "@vueform/builder",
4-
"version": "1.1.6",
4+
"version": "1.1.7",
55
"description": "Vueform Builder development build.",
66
"homepage": "https://vueform.com",
77
"license": "SEE LICENSE IN LICENSE.txt",

plugin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ export default function () {
16541654
apply: ['FileElement'],
16551655
setup(props, context, component) {
16561656
if (!component.form$.value.builder) {
1657-
return
1657+
return component
16581658
}
16591659

16601660
const axios = {

0 commit comments

Comments
 (0)