color issues

pull/59/head
accius 2 days ago
parent 109d733b1c
commit bf00ffda3c

@ -859,8 +859,8 @@ export const WorldMap = ({
</div> </div>
)} )}
<div style={{ display: 'flex', gap: '8px', alignItems: 'center' }}> <div style={{ display: 'flex', gap: '8px', alignItems: 'center' }}>
<span style={{ background: '#00aaff', color: '#000', padding: '2px 5px', borderRadius: '3px', fontWeight: '600' }}> DE</span> <span style={{ background: 'var(--accent-amber)', color: '#000', padding: '2px 5px', borderRadius: '3px', fontWeight: '600' }}> DE</span>
<span style={{ background: '#ff8800', color: '#000', padding: '2px 5px', borderRadius: '3px', fontWeight: '600' }}> DX</span> <span style={{ background: '#00aaff', color: '#000', padding: '2px 5px', borderRadius: '3px', fontWeight: '600' }}> DX</span>
</div> </div>
{showPOTA && ( {showPOTA && (
<div style={{ display: 'flex', gap: '4px', alignItems: 'center' }}> <div style={{ display: 'flex', gap: '4px', alignItems: 'center' }}>

@ -116,6 +116,11 @@ export const loadConfig = () => {
// Mark if config needs setup (no callsign set anywhere) // Mark if config needs setup (no callsign set anywhere)
config.configIncomplete = (config.callsign === 'N0CALL' || !config.locator); config.configIncomplete = (config.callsign === 'N0CALL' || !config.locator);
// Always inject version from server (not a user preference — server is source of truth)
if (serverConfig?.version) {
config.version = serverConfig.version;
}
return config; return config;
}; };

Loading…
Cancel
Save

Powered by TurnKey Linux.