Skip to content

Commit 341aedf

Browse files
osiastedianTed Ian Osias
andauthored
Good first issue fixes 10 06 2025 (#152)
* fix(header): update setup link to Syscoin Nexus guide SYSHUB001v1-ER13 - Update top menu Setup link from outdated Syscoin 4 guide to Syscoin Nexus guide - Fixes issue #92 * fix(forms): add info icon to Collateral Index field and fix text contrast SYSHUB001v1-SG09, SYSHUB001v1-SG10 - Add information icon to Collateral Index field with helpful tooltip about masternode_outputs command - Fix text contrast in proposal description field by changing text color from dark to white - Fix text contrast in FAQ form editor as well - Fixes issues #88, #89 --------- Co-authored-by: Ted Ian Osias <[email protected]>
1 parent 4da5086 commit 341aedf

File tree

7 files changed

+24
-23
lines changed

7 files changed

+24
-23
lines changed
12.2 KB
Loading

src/components/admin/FaqForm.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ const FaqForm = () => {
287287
editorStyle={{
288288
paddingTop: 0,
289289
paddingBottom: 0,
290-
color: "#0f1f1f",
290+
color: "#ffffff",
291291
backgroundColor: "rgba(138, 196, 247, 0.322)",
292292
}}
293293
/>

src/components/global/Footer.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,7 @@ class Footer extends Component {
2626
<nav className="nav">
2727
<ul>
2828
<li>
29-
<a
30-
href="https://sysnode.info/about"
31-
rel="noopener noreferrer"
32-
target="_blank"
33-
>About</a>
29+
<Link to="/stats">About</Link>
3430
</li>
3531

3632
<li>
@@ -39,7 +35,7 @@ class Footer extends Component {
3935

4036
<li>
4137
<a
42-
href="https://support.syscoin.org/t/masternode-setup-guide-fresh-install-automated-server-setup/19"
38+
href="https://support.syscoin.org/t/syscoin-nexus-sentry-node-install-guide/463"
4339
rel="noopener noreferrer"
4440
target="_blank"
4541
>Setup</a>

src/components/global/Header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function Header({ t }) {
103103

104104
<li onClick={menuLinks}>
105105
<a
106-
href="https://support.syscoin.org/t/masternode-setup-guide-fresh-install-automated-server-setup/19"
106+
href="https://support.syscoin.org/t/syscoin-nexus-sentry-node-install-guide/463"
107107
rel="noopener noreferrer"
108108
target="_blank"
109109
>

src/components/home/HomeButtons.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function HomeButtons() {
2020
Learn More
2121
</Link>
2222
<a
23-
href="https://support.syscoin.org/t/masternode-setup-guide-fresh-install-automated-server-setup/19"
23+
href="https://support.syscoin.org/t/syscoin-nexus-sentry-node-install-guide/463"
2424
className="btn btn-outline-primary"
2525
rel="noopener noreferrer"
2626
target="_blank"

src/components/masternodes/masternodeForm/MasternodeDetails.jsx

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -101,19 +101,24 @@ const MasternodeDetails = ({ onNext }) => {
101101
</div>
102102
<div className="form-group">
103103
<label htmlFor="collateralIndex">Collateral index</label>
104-
<select
105-
className="styled"
106-
name="collateralIndex"
107-
id="collateralIndex"
108-
ref={register}
109-
defaultValue=""
110-
>
111-
<option value="" hidden>
112-
Select The output index of the 100000 Syscoin funding transaction
113-
</option>
114-
<option value="0">0</option>
115-
<option value="1">1</option>
116-
</select>
104+
<div style={{ position: 'relative' }}>
105+
<select
106+
className="styled"
107+
name="collateralIndex"
108+
id="collateralIndex"
109+
ref={register}
110+
defaultValue=""
111+
>
112+
<option value="" hidden>
113+
Select The output index of the 100000 Syscoin funding transaction
114+
</option>
115+
<option value="0">0</option>
116+
<option value="1">1</option>
117+
</select>
118+
<IconInput dataId="collateralIndex">
119+
<p>The output index of the 100000 Syscoin funding transaction. Use the <code>masternode_outputs</code> command in your QT wallet to get the collateral_hash and corresponding index.</p>
120+
</IconInput>
121+
</div>
117122
<ErrorMessage
118123
errors={errors}
119124
name="collateralIndex"

src/components/proposal/DescriptionProposal.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ function DescriptionProposal({onNext, onBack}) {
143143
editorStyle={{
144144
paddingTop: 0,
145145
paddingBottom: 0,
146-
color: "#0f1f1f",
146+
color: "#ffffff",
147147
backgroundColor: "rgba(138, 196, 247, 0.322)",
148148
}}
149149
/>

0 commit comments

Comments
 (0)