Skip to content

Commit 9663ad3

Browse files
author
hikki
committed
7.1
1 parent 8df6f10 commit 9663ad3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Assembly/Unit/CascadeDot.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function __toString()
7676
$content = <<<EOF
7777
<div id="{$this->column}" {$this->annotation}></div>
7878
<script>
79-
new ComponentCascadeDot("#{$this->column}",{$this->select},{$this->selected},{$this->limit}){$execute};
79+
new ComponentCascadeDot("#{$this->column}",{$this->select}).selected({$this->selected}).limitNum({$this->limit}){$execute};
8080
</script>
8181
EOF;
8282
if(!$this->label) return $content;

src/Assembly/Unit/Dot.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function __toString()
7575
$content = <<<EOF
7676
<div id="{$this->column}" {$this->annotation}></div>
7777
<script>
78-
new ComponentDot("#{$this->column}",{$this->select},{$this->selected},{$this->limit}){$execute};
78+
new ComponentDot("#{$this->column}",{$this->select}).selected({$this->selected}).limitNum({$this->limit}){$execute};
7979
</script>
8080
EOF;
8181
if(!$this->label) return $content;

src/Assembly/Unit/Select.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public function __toString()
151151
$execute .= '.make()';
152152
$content = <<<EOF
153153
<div id="{$this->column}" {$this->annotation}></div>
154-
<script>new ComponentDot("#{$this->column}",{$this->select},{$this->selected},{$this->limit}){$execute};</script>
154+
<script>new ComponentDot("#{$this->column}",{$this->select}).selected({$this->selected}).limitNum({$this->limit}){$execute};</script>
155155
EOF;
156156
if(!$this->label) return $content;
157157

src/DLPServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public function boot(DLP $extension)
2929
}
3030

3131
Admin::booting(function () {
32-
Admin::css('vendor/dlp/component.min.css?v7.1');
33-
Admin::headerJs('vendor/dlp/component.min.js?v7.1');
32+
Admin::css('vendor/dlp/component.min.css?v7.1.1');
33+
Admin::headerJs('vendor/dlp/component.min.js?v7.1.1');
3434
});
3535
}
3636
}

0 commit comments

Comments
 (0)