Skip to content

Commit f9fd157

Browse files
committed
added more to the readme
1 parent b317e13 commit f9fd157

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,17 @@
206206
<li>Exported project template code now more accurately reflects component placement in app</li>
207207
<li>Improved canvas drag and deselect</li>
208208
<li>Improved WSL developer installation instructions</li>
209-
<li>Added TypeScipt to application files</li>
209+
<li>Added TypeScipt to application</li>
210+
<li>Implemented component search bar feature</li>
210211
<br>
211212
<h4><strong>Bug Fixes</strong></h4>
212213
<li>Fixed routing components in project exports </li>
213214
<li>Fixed component hierarchy in project exports </li>
214215
<li>Fixed import statements of route child components</li>
215216
<li>Fixed edge case HTML element bugs in project exports </li>
216217
<li>Fixed in app component movement bugs which caused position to not update correctly </li>
218+
<li>Fixed drag and drop HTML element on click bug</li>
219+
<li>Eliminated code redundancy by implementing mixins</li>
217220
</ul>
218221
</details>
219222
<br/>

src/store/state/htmlElementMap.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ const htmlElementMap :HtmlElementMap= {
3333
};
3434

3535
const openHtmlElementMap :HtmlElementMap= {
36-
div: ['<div>', '</div>'],
37-
button: ['<button>', '</button>'],
38-
form: ['<form>', '</form>'],
39-
img: ['<img>', ''],
36+
div: ['<div', '</div>'],
37+
button: ['<button', '</button>'],
38+
form: ['<form', '</form>'],
39+
img: ['<img', ''],
4040
link: ['<a href="#"/>', ''],
4141
list: ['<li>', '</li>'],
4242
paragraph: ['<p>', '</p>'],

0 commit comments

Comments
 (0)