Skip to content

Commit 9dcdc16

Browse files
author
Dave Conway-Jones
committed
fix ref to old icon style
to close #165
1 parent 5a4ab5d commit 9dcdc16

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/creating-nodes/config-nodes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ key differences:
3636

3737
<script type="text/html" data-template-name="remote-server">
3838
<div class="form-row">
39-
<label for="node-config-input-host"><i class="icon-bookmark"></i> Host</label>
39+
<label for="node-config-input-host"><i class="fa fa-bookmark"></i> Host</label>
4040
<input type="text" id="node-config-input-host">
4141
</div>
4242
<div class="form-row">
43-
<label for="node-config-input-port"><i class="icon-bookmark"></i> Port</label>
43+
<label for="node-config-input-port"><i class="fa fa-bookmark"></i> Port</label>
4444
<input type="text" id="node-config-input-port">
4545
</div>
4646
</script>

docs/creating-nodes/credentials.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ To add credentials to a node, the following steps are taken:
2424
2. Add suitable entries to the edit template for the node
2525
```html
2626
<div class="form-row">
27-
<label for="node-input-username"><i class="icon-tag"></i> Username</label>
27+
<label for="node-input-username"><i class="fa fa-tag"></i> Username</label>
2828
<input type="text" id="node-input-username">
2929
</div>
3030
<div class="form-row">
31-
<label for="node-input-password"><i class="icon-tag"></i> Password</label>
31+
<label for="node-input-password"><i class="fa fa-tag"></i> Password</label>
3232
<input type="password" id="node-input-password">
3333
</div>
3434
```

docs/creating-nodes/first-node.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ For more information about the runtime part of the node, see [here](node-js).
127127

128128
<script type="text/html" data-template-name="lower-case">
129129
<div class="form-row">
130-
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
130+
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
131131
<input type="text" id="node-input-name" placeholder="Name">
132132
</div>
133133
</script>

docs/creating-nodes/properties.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ property called `prefix` to the node:
2727
2. Add an entry to the edit template for the node
2828
```html
2929
<div class="form-row">
30-
<label for="node-input-prefix"><i class="icon-tag"></i> Prefix</label>
30+
<label for="node-input-prefix"><i class="fa fa-tag"></i> Prefix</label>
3131
<input type="text" id="node-input-prefix">
3232
</div>
3333
```

0 commit comments

Comments
 (0)