Skip to content

Commit 8edb105

Browse files
fix: prefix each scope with s-
1 parent f46951a commit 8edb105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/php/Component/Scope/Scope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public function init() {
88
if(!empty($this->data['name'])) {
99
if(is_array($this->data['name'])) {
1010
$this->data['name'] = array_filter($this->data['name']);
11-
$this->data['name'] = implode(' ', $this->data['name']);
11+
$this->data['name'] = implode(' s-', $this->data['name']);
1212
}
1313

1414
$this->data['attributeList']['data-scope'] = 's-' . $this->data['name'] ;

0 commit comments

Comments
 (0)