A10.10.4Input-side redesign over vigilancedesign

Reducing this error means redesigning the input side, not asking users to focus harder

Aliases: presentation redesign · input-side fix

What it is

Since a data-driven error doesn't route through the user's intent or attention, any countermeasure that asks the user to "be more careful" or "look again" is aimed at the wrong target. An effective intervention can only land where the trigger actually happens — the point where data is presented to the user: change where the data sits, how it looks, or when it appears, so it no longer overlaps with an unrelated schema's trigger pattern, rather than hoping the user will intercept it with extra attention on a channel where the trigger has already fired.

Why it happens

The point where a data-driven error is triggered is perception, not action execution or user judgment — the user never made a wrong judgment and never ran a wrong motor program; the problem is that the way the data was laid out happened to satisfy some other schema's trigger condition. Since the problem originates at the presentation step, the intervention needs to land there too: putting an attention reminder at the execution or judgment stage is defending the wrong location, because the trigger has already completed further upstream, at perception — no reminder, however well-timed, can stop a schema that has already fired.

Where it stops holding

This countermeasure only works when the data's presentation can actually be redesigned — if a data format is locked in by an external system or industry convention (the digit grouping of a national ID number or a bank card number), the designer's room to change it is limited, and the fallback is to add isolation at the point where the data flows into the action sequence, rather than hoping to redesign the data's presentation itself. Also, redesigning presentation solves "stop the trigger from firing" — if the trigger has already fired and the wrong action has already been taken, this countermeasure offers no remedy; recovery has to fall to a different mechanism, such as making the wrong action cheap to undo.

Applying it

Find the spots most vulnerable to this error: typically wherever someone is handling one piece of data while an input control that directly accepts that data's format sits right next to it — a numeric input field sitting next to where a number is being read aloud, say. At these spots, do two things: separate the display area carrying the current task's data from any input control that could trigger an unrelated action, both spatially and in timing, so the two don't appear in the same field of view or the same operating window at once; and for data whose format can't be visually differentiated (both are plain digit strings), add a content check at the critical input point that verifies the entered value actually fits that field's valid range, rather than accepting any digit string unquestioned. To verify: cross-reference mis-entry error logs against interface layout to check whether these errors cluster at spots where the data display area sits close to, or visually merges with, an unrelated input control; after adjusting the layout or adding value validation, track whether the mis-entry rate at those same spots drops.

Related

  • Same group: A10.10.1 Data-driven errors are triggered by externally presented information hijacking a similar-looking action schema · A10.10.2 This error is intent-independent, driven only by perceptual surface features · A10.10.3 Interface elements that resemble a hazard's trigger cues keep inducing this error
  • Nearby: A10.06 Error-proofing design · A10.04 Description-similarity errors
  • Search terms: input redesign · data entry error · error proofing

Cards in the same group

Quick Actions

Share

Share this page

ios_share

https://hci.top/en/handbook/A10.10.4