Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .playwright-mcp/github-compare-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/admin/FaqForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ const FaqForm = () => {
editorStyle={{
paddingTop: 0,
paddingBottom: 0,
color: "#0f1f1f",
color: "#ffffff",
backgroundColor: "rgba(138, 196, 247, 0.322)",
}}
/>
Expand Down
8 changes: 2 additions & 6 deletions src/components/global/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,7 @@ class Footer extends Component {
<nav className="nav">
<ul>
<li>
<a
href="https://sysnode.info/about"
rel="noopener noreferrer"
target="_blank"
>About</a>
<Link to="/stats">About</Link>
</li>

<li>
Expand All @@ -39,7 +35,7 @@ class Footer extends Component {

<li>
<a
href="https://support.syscoin.org/t/masternode-setup-guide-fresh-install-automated-server-setup/19"
href="https://support.syscoin.org/t/syscoin-nexus-sentry-node-install-guide/463"
rel="noopener noreferrer"
target="_blank"
>Setup</a>
Expand Down
2 changes: 1 addition & 1 deletion src/components/global/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function Header({ t }) {

<li onClick={menuLinks}>
<a
href="https://support.syscoin.org/t/masternode-setup-guide-fresh-install-automated-server-setup/19"
href="https://support.syscoin.org/t/syscoin-nexus-sentry-node-install-guide/463"
rel="noopener noreferrer"
target="_blank"
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/home/HomeButtons.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function HomeButtons() {
Learn More
</Link>
<a
href="https://support.syscoin.org/t/masternode-setup-guide-fresh-install-automated-server-setup/19"
href="https://support.syscoin.org/t/syscoin-nexus-sentry-node-install-guide/463"
className="btn btn-outline-primary"
rel="noopener noreferrer"
target="_blank"
Expand Down
31 changes: 18 additions & 13 deletions src/components/masternodes/masternodeForm/MasternodeDetails.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,19 +101,24 @@ const MasternodeDetails = ({ onNext }) => {
</div>
<div className="form-group">
<label htmlFor="collateralIndex">Collateral index</label>
<select
className="styled"
name="collateralIndex"
id="collateralIndex"
ref={register}
defaultValue=""
>
<option value="" hidden>
Select The output index of the 100000 Syscoin funding transaction
</option>
<option value="0">0</option>
<option value="1">1</option>
</select>
<div style={{ position: 'relative' }}>
<select
className="styled"
name="collateralIndex"
id="collateralIndex"
ref={register}
defaultValue=""
>
<option value="" hidden>
Select The output index of the 100000 Syscoin funding transaction
</option>
<option value="0">0</option>
<option value="1">1</option>
</select>
<IconInput dataId="collateralIndex">
<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>
</IconInput>
</div>
<ErrorMessage
errors={errors}
name="collateralIndex"
Expand Down
2 changes: 1 addition & 1 deletion src/components/proposal/DescriptionProposal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function DescriptionProposal({onNext, onBack}) {
editorStyle={{
paddingTop: 0,
paddingBottom: 0,
color: "#0f1f1f",
color: "#ffffff",
backgroundColor: "rgba(138, 196, 247, 0.322)",
}}
/>
Expand Down