FarmBot/Farmbot-Web-App

View on GitHub
frontend/controls/locked_class.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Returns className for styling movement and pin control command buttons
 * depending on e-stop status.
 */
export const lockedClass = (locked: boolean | undefined) =>
  locked ? "pseudo-disabled" : "";