code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/ui/src/components/scroll-area/QScrollArea.js b/ui/src/components/scroll-area/QScrollArea.js @@ -251,7 +251,7 @@ export default Vue.extend({ render (h) { if (this.$q.platform.is.desktop !== true) { return h('div', { - staticClass: 'q-scroll-area', + staticClass: 'q-scrollarea', style: this.contentStyle }, [...
1
diff --git a/app/views/shared/_public_dashboard_org_header.html.erb b/app/views/shared/_public_dashboard_org_header.html.erb <%= @name %> <span class="UserInfo-nameBreadcrumb"> / <% if @content_type == 'maps' %> - <%= link_to 'Maps', @maps_url, class: "DropdownLink js-breadcrumb-dropdown-target" %> + <%= link_to 'Maps'...
2
diff --git a/assets/js/modules/analytics/datastore/service.test.js b/assets/js/modules/analytics/datastore/service.test.js @@ -130,7 +130,7 @@ describe( 'module/analytics service store', () => { expect( reportServiceURL.startsWith( baseURI ) ).toBe( true ); // For more details about how `reportArgs` are handled, see as...
1
diff --git a/src/lib/wallet/GoodWallet.js b/src/lib/wallet/GoodWallet.js @@ -4,6 +4,7 @@ import ReserveABI from '@gooddollar/goodcontracts/build/contracts/GoodDollarRese import IdentityABI from '@gooddollar/goodcontracts/build/contracts/Identity.min.json' import OneTimePaymentLinksABI from '@gooddollar/goodcontracts/bu...
0
diff --git a/test/Air/Air.test.js b/test/Air/Air.test.js @@ -620,7 +620,7 @@ describe('#AirService', () => { const importPNR = sinon.spy((options) => { expect(options.pnr).to.be.equal('PNR'); - return Promise.resolve(params); + return Promise.resolve([params]); }); const service = () => ({ @@ -634,6 +634,7 @@ describe(...
1
diff --git a/test/jasmine/tests/legend_test.js b/test/jasmine/tests/legend_test.js @@ -1672,28 +1672,28 @@ describe('legend interaction', function() { function run() { return Promise.resolve() - .then(click(0, 1)).then(_assert(['legendonly', true])) - .then(click(0, 1)).then(_assert([true, true])) - .then(click(0, 2))....
7
diff --git a/src/content/en/updates/2020/01/twa-multi-origin.md b/src/content/en/updates/2020/01/twa-multi-origin.md @@ -3,7 +3,7 @@ book_path: /web/updates/_book.yaml description: Explains how to create one application using Trusted Web Activities that supports opening multiple origins in full-screen. {# wf_published_...
7
diff --git a/src/components/Main/Results/ResponsiveTooltipContent.tsx b/src/components/Main/Results/ResponsiveTooltipContent.tsx @@ -13,6 +13,7 @@ interface TooltipItem extends LineProps { interface ResponsiveTooltipContentProps extends TooltipProps { valueFormatter: (value: number | string) => string + itemsToDisplay?...
11
diff --git a/AreasOfEffect/script.json b/AreasOfEffect/script.json { "name": "Areas of Effect", "script": "aoe.js", - "version": "1.5", + "version": "1.5.1", "previousversions": ["1.0", "1.1", "1.2.1", "1.3", "1.4"], "description": "# Areas of Effect\r\r_v1.5 Updates_\r* Added blast and line/cone effect buttons.\r\rGMs...
1
diff --git a/README.md b/README.md @@ -48,7 +48,7 @@ You can provide an object of options as the last argument to `katex.render` and - `displayMode`: `boolean`. If `true` the math will be rendered in display mode, which will put the math in display style (so `\int` and `\sum` are large, for example), and will center th...
7
diff --git a/modules/keyboard.js b/modules/keyboard.js @@ -279,11 +279,14 @@ function handleBackspace(range, context) { if (range.index === 0 || this.quill.getLength() <= 1) return; let [line, ] = this.quill.getLine(range.index); let formats = {}; - if (context.offset === 0 && line.prev != null && line.prev.length() > ...
9
diff --git a/src/webroutes/dangerZone/actions.js b/src/webroutes/dangerZone/actions.js @@ -192,6 +192,30 @@ async function handleImportBansDBMS(ctx, dbType) { let invalid = 0; try { if(dbType == 'bansql'){ + const [rows, fields] = await dbConnection.execute(`SELECT * FROM banlist`); + for (let index = 1; index < rows.l...
0
diff --git a/packages/cx/src/widgets/nav/Menu.d.ts b/packages/cx/src/widgets/nav/Menu.d.ts @@ -18,7 +18,7 @@ interface MenuProps extends Cx.HtmlElementProps { overflow?: boolean, /** Icon to be used for the overflow menu. */ - overflowIcon?: boolean, + overflowIcon?: string, /** Base CSS class to be applied to the elem...
1
diff --git a/packages/app/src/server/views/widget/page_alerts.html b/packages/app/src/server/views/widget/page_alerts.html <p class="alert alert-primary py-3 px-4"> {% if page.grant == 2 %} - <i class="icon-fw icon-link"></i><strong>{{ consts.pageGrants[page.grant] }}</strong> ({{ t('Browsing of this page is restricted...
14
diff --git a/src/Header.jsx b/src/Header.jsx @@ -122,12 +122,6 @@ export default function Header({ setOpen('chat'); return true; } - case 84: { // T - e.preventDefault(); - e.stopPropagation(); - world.toggleMic(); - return true; - } case 191: { // / if (!magicMenuOpen && !ioManager.inputFocused()) { e.preventDefault()...
2
diff --git a/converters/toZigbee.js b/converters/toZigbee.js @@ -62,6 +62,10 @@ const converters = { const attrId = 'currentLevel'; if (type === 'set') { + if (value.includes('%')) { + value = Math.round(Number(value.replace('%', '')) * 2.55).toString(); + } + return { cid: cid, cmd: 'moveToLevelWithOnOff', @@ -90,6 +9...
11
diff --git a/src/track.js b/src/track.js @@ -4,23 +4,27 @@ import React from 'react'; import assign from 'object-assign'; import classnames from 'classnames'; + +// given specifications/props for a slide, fetch all the classes that need to be applied to the slide var getSlideClasses = (spec) => { + // if spec has curre...
0
diff --git a/cgo/cgo_main_awslib.go b/cgo/cgo_main_awslib.go @@ -7,6 +7,7 @@ package cgo import "C" import ( + "bytes" "encoding/json" "fmt" "io" @@ -15,8 +16,8 @@ import ( "net/http/httptest" "net/url" "os" + "runtime/debug" "strconv" - "strings" "sync" "syscall" "time" @@ -28,6 +29,7 @@ import ( "github.com/aws/aws-s...
9
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/common/toggleButton.js b/packages/node_modules/@node-red/editor-client/src/js/ui/common/toggleButton.js invertState = this.options.invertState; } var baseClass = this.options.baseClass || "red-ui-button"; - var enabledIcon = this.options.enabledIcon |...
11
diff --git a/js/modules/dicommodule.js b/js/modules/dicommodule.js @@ -280,12 +280,12 @@ class DicomModule extends BaseModule { console.log('.... all done (no bids), returning output path = ' + outdir); }).catch((e) => { console.log('An error occured during the dicom conversion process', e); - }).finally( () => { + });...
2
diff --git a/cypress/integration/ui/scenario1.js b/cypress/integration/ui/scenario1.js @@ -49,7 +49,7 @@ describe('use all parts of svg-edit', function () { .trigger('mouseup', { force: true }); cy.get('#svgcontent').toMatchSnapshot(); }); - it('check mode_connect', function () { + /* it('check mode_connect', function ...
13
diff --git a/test/v1/tck/steps/erroreportingsteps.js b/test/v1/tck/steps/erroreportingsteps.js @@ -65,16 +65,15 @@ module.exports = function () { this.When(/^I set up a driver to an incorrect port$/, function (callback) { var self = this; var driver = neo4j.driver("bolt://localhost:7777", neo4j.auth.basic(sharedNeo4j.u...
7
diff --git a/src/io_frida.c b/src/io_frida.c @@ -263,6 +263,7 @@ static RIODesc *__open(RIO *io, const char *pathname, int rw, int mode) { const char *autocompletions[] = { "!!!\\eval", "!!!\\e", + "!!!\\env", "!!!\\i", "!!!\\ii", "!!!\\il", @@ -287,8 +288,10 @@ static RIODesc *__open(RIO *io, const char *pathname, int...
7
diff --git a/package.json b/package.json "name": "find-and-replace", "main": "./lib/find", "description": "Find and replace within buffers and across the project.", - "version": "0.205.1", + "version": "0.206.0", "license": "MIT", "activationCommands": { "atom-workspace": [ "projectSearchResultsPaneSplitDirection": { "...
6
diff --git a/token-metadata/0x6dddF4111ad997A8C7Be9B2e502aa476Bf1F4251/metadata.json b/token-metadata/0x6dddF4111ad997A8C7Be9B2e502aa476Bf1F4251/metadata.json "symbol": "UNT", "address": "0x6dddF4111ad997A8C7Be9B2e502aa476Bf1F4251", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/app/controllers/admin/visualizations_controller.rb b/app/controllers/admin/visualizations_controller.rb @@ -96,8 +96,6 @@ class Admin::VisualizationsController < Admin::AdminController def public_table return(render_pretty_404) if @visualization.private? - get_viewed_user - if @visualization.derived? if cu...
2
diff --git a/source/views/controls/RichTextView.js b/source/views/controls/RichTextView.js @@ -56,8 +56,9 @@ const popOver = new PopOverView(); const equalTo = Transform.isEqualToValue; const TOOLBAR_HIDDEN = 0; -const TOOLBAR_AT_SELECTION = 1; -const TOOLBAR_AT_TOP = 2; +const TOOLBAR_INLINE = 1; +const TOOLBAR_AT_SEL...
0
diff --git a/assets/js/modules/thank-with-google/datastore/settings.test.js b/assets/js/modules/thank-with-google/datastore/settings.test.js @@ -49,8 +49,8 @@ describe( 'modules/thank-with-google settings', () => { const validSettings = { publicationID: 'publisher.com', - colorTheme: 'light', - buttonPlacement: 'bottom...
1
diff --git a/src/Services/Air/templates/AIR_TICKET_REQUEST.handlebars.js b/src/Services/Air/templates/AIR_TICKET_REQUEST.handlebars.js @@ -16,6 +16,9 @@ module.exports = ` <air:AirPricingInfoRef Key="{{key}}"/> {{/refs}} <air:AirTicketingModifiers> + {{#refs}} + <air:AirPricingInfoRef Key="{{key}}"/> + {{/refs}} {{#if ...
0
diff --git a/test/HTTP2_server.js b/test/HTTP2_server.js @@ -3,23 +3,19 @@ const fs = require('fs'); const CERT_PATH = 'test/HTTP2_cert.pem'; const PRIV_PATH = 'test/HTTP2_private.pem'; -let count = 0; const server = http2.createSecureServer({ cert: fs.readFileSync(CERT_PATH), key: fs.readFileSync(PRIV_PATH), }); + ser...
7
diff --git a/drop-manager.js b/drop-manager.js @@ -12,6 +12,7 @@ const gltfLoader = new GLTFLoader(); const cubicBezier = easing(0, 1, 0, 1); const cubicBezier2 = easing(0, 1, 1, 1); const simplex = new Simplex('lol'); +const gravity = new THREE.Vector3(0, -9.8, 0); const tickers = []; const loadPromise = (async () => ...
0
diff --git a/readme.md b/readme.md @@ -28,7 +28,7 @@ Here are the links to the current version: ## Dev -``` +```sh git clone https://github.com/th-ch/youtube-music cd youtube-music npm install @@ -48,7 +48,7 @@ Create a folder in `plugins/YOUR-PLUGIN-NAME`: - if you need to manipulate the BrowserWindow, create a file `...
7
diff --git a/src/app.js b/src/app.js @@ -71,7 +71,7 @@ module.exports = app; // Mongo Connection + Server Start (async () => { try { - const client = await MongoClient.connect(url); + const client = await MongoClient.connect(url, { poolSize: 100 }); global.db = client.db('spacex-api');
12
diff --git a/source/views/panels/PopOverView.js b/source/views/panels/PopOverView.js @@ -216,11 +216,21 @@ const PopOverView = Class({ adjustPosition ( deltaLeft, deltaTop ) { let parent = this.get( 'parentView' ); const layer = this.get( 'layer' ); - const positionToThe = this.get( 'options' ).positionToThe || 'bottom...
0
diff --git a/docs/api/intent-button.md b/docs/api/intent-button.md @@ -55,7 +55,7 @@ DOM.render(<CountPresenter repo={ repo } />, document.getElementById('container' ``` When clicked, the IntentButton will invoke an intent, passing in the -provided `params` prop. +provided `value` prop. ## Props
14
diff --git a/mobile/components/Lists/style.js b/mobile/components/Lists/style.js @@ -6,6 +6,9 @@ import styled from 'styled-components/native'; export const ListItemView = styled.View` display: flex; flex: 1; + flex-grow: 1; + flex-shrink: 0; + flex-basis: auto; flex-direction: column; border-bottom-color: ${props => p...
1
diff --git a/README.md b/README.md @@ -27,13 +27,13 @@ npm install https://github.com/LLK/scratch-render.git ```js var canvas = document.getElementById('myStage'); -var debug = document.getElementById('myDebugElement'); +var debug = document.getElementById('myDebug'); // Instantiate the renderer var renderer = new requ...
1
diff --git a/OpenRobertaServer/staticResources/js/app/roberta/controller/menu.controller.js b/OpenRobertaServer/staticResources/js/app/roberta/controller/menu.controller.js @@ -99,7 +99,9 @@ define([ 'exports', 'log', 'util', 'message', 'comm', 'robot.controller', 'socke clone.find('span:eq( 0 )').addClass('typcn-' + r...
1
diff --git a/scss/layout/_navbar.scss b/scss/layout/_navbar.scss @@ -29,7 +29,7 @@ $siimple-navbar-height: 34px; &-title { display: inline-block; height: $siimple-navbar-height; - //line-height: $siimple-navbar-title-line-height; + line-height: $siimple-navbar-height; text-decoration: none; font-weight: bold; font-size...
1
diff --git a/assets/js/components/legacy-notifications/notification.js b/assets/js/components/legacy-notifications/notification.js @@ -132,10 +132,8 @@ class Notification extends Component { title, description, blockData, - winImage, WinImageSVG, SmallImageSVG, - smallImage, format, learnMoreURL, learnMoreDescription, ...
2
diff --git a/app/controllers/ApplicationController.scala b/app/controllers/ApplicationController.scala @@ -37,6 +37,7 @@ class ApplicationController @Inject() (implicit val env: Environment[User, Sessi def index = UserAwareAction.async { implicit request => val timestamp: Timestamp = new Timestamp(Instant.now.toEpochMi...
7
diff --git a/app/services/carto/user_metadata_export_service.rb b/app/services/carto/user_metadata_export_service.rb @@ -19,10 +19,11 @@ require_dependency 'carto/export/connector_configuration_exporter' # 1.0.6: client_applications & friends and sql_copy rate_limits # 1.0.7: export password_reset_token and password_re...
3
diff --git a/go.sum b/go.sum @@ -317,7 +317,7 @@ github.com/shirou/gopsutil v3.20.11+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMT github.com/shirou/gopsutil v3.20.12+incompatible h1:6VEGkOXP/eP4o2Ilk8cSsX0PhOEfX6leqAnD+urrp9M= github.com/shirou/gopsutil v3.20.12+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC...
2
diff --git a/articles/security/store-tokens.md b/articles/security/store-tokens.md @@ -57,5 +57,4 @@ This video will show you how to handle session data when building a web app. It ::: next-steps * [Understanding Sessions & Cookies Video](/videos/session-and-cookies) * [Auth0 Blog: 10 Things You Should Know about Token...
2
diff --git a/src/js/services/correspondentListService.js b/src/js/services/correspondentListService.js @@ -943,7 +943,6 @@ angular.module('copayApp.services').factory('correspondentListService', function if (unit === $rootScope.sentUnit) return; if (!$rootScope.newPaymentsCount[unit]) { - $rootScope.newPaymentsCount[un...
12
diff --git a/assets/js/components/setup/compatibility-checks.js b/assets/js/components/setup/compatibility-checks.js @@ -63,7 +63,6 @@ export default class CompatibilityChecks extends Component { return; } try { - this.onStart(); for ( const testCallback of checks ) { await testCallback(); } @@ -72,23 +71,7 @@ export d...
2
diff --git a/.github/workflows/perf-check.yml b/.github/workflows/perf-check.yml @@ -28,7 +28,7 @@ jobs: originSha=$(git rev-parse HEAD^2) echo $originSha > tmp/sha-for-commit.txt git show --format=short --no-patch $originSha - - uses: tracerbench/tracerbench-compare-action@runspired/add-config-option + - uses: tracerb...
4
diff --git a/doc/README.md b/doc/README.md @@ -344,7 +344,7 @@ or ## API -There are times when you may need to open or close a tooltip manually. To make this possible PowerTip exposes a couple of API methods on the `$.powerTip` object. +There are some scenarios where you may want to manually open/close or update/remove...
7
diff --git a/src/util.js b/src/util.js @@ -377,22 +377,39 @@ util.split = (str, ...splitAt) => { current = ''; for(let i = 0; i < str.length; i++){ - let char = str.charAt(i); - if(char === '"' && !quote){ - dQuote = !dQuote; + const char = str.charAt(i), + next = str.charAt(i+1); + if (i === 0 && char === "'") { + quo...
4
diff --git a/src/component/component.js b/src/component/component.js @@ -310,7 +310,8 @@ export class Component<P> { throw new Error(`Expected element to be passed to render iframe`); } - getDefaultContext(context : ?$Values<typeof CONTEXT>, props : PropsInputType<P>) : $Values<typeof CONTEXT> { + getDefaultContext(con...
11
diff --git a/token-metadata/0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11/metadata.json b/token-metadata/0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11/metadata.json "symbol": "OBEE", "address": "0x3678d8CC9Eb08875A3720f34c1C8d1e1B31F5A11", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/src/extension/utils/currency.js b/src/extension/utils/currency.js @@ -3,6 +3,7 @@ export function formatCurrency(value) { const userCurrency = currencyFormatter.getCurrency(); let formattedCurrency = currencyFormatter.format(value).toString(); + if (userCurrency.display_symbol) { if (userCurrency.symbol_fi...
1
diff --git a/src/scss/grommet-core/_objects.meter.scss b/src/scss/grommet-core/_objects.meter.scss @@ -77,12 +77,10 @@ $meter-active-offset: round($inuit-base-spacing-unit * 1.5); stroke-width: double($meter-slice-width); } - .#{$grommet-namespace}meter__values .#{$grommet-namespace}meter__slice { - &:hover { + .#{$gro...
1
diff --git a/packages/react-hot-loader/src/reconciler/hotReplacementRender.js b/packages/react-hot-loader/src/reconciler/hotReplacementRender.js @@ -108,7 +108,7 @@ const mergeInject = (a, b) => { return mergeInject(a, [b]) } - if (a.length !== b.length) { + if (!a || !b || a.length !== b.length) { return {children: []...
9
diff --git a/src-input/duk_bi_global.c b/src-input/duk_bi_global.c @@ -427,6 +427,7 @@ DUK_INTERNAL duk_ret_t duk_bi_global_object_eval(duk_context *ctx) { duk_bool_t this_to_global = 1; duk_small_uint_t comp_flags; duk_int_t level = -2; + duk_small_uint_t call_flags; DUK_ASSERT(duk_get_top(ctx) == 1 || duk_get_top(ctx...
12
diff --git a/src/components/CartPopover/CartPopover.js b/src/components/CartPopover/CartPopover.js @@ -20,7 +20,7 @@ import Link from "components/Link"; const styles = (theme) => ({ container: { alignItems: "center", - boxShadow: `-5px 10px 20px ${theme.palette.reaction.black50}`, + boxShadow: `0 0 1em ${theme.palette....
3
diff --git a/src/App/components/ChatInput/index.js b/src/App/components/ChatInput/index.js @@ -17,6 +17,8 @@ import { EmojiToggle, } from './style'; +const NEWLINES = /(\r\n|\n|\r)/gm; + class ChatInput extends Component { constructor() { super(); @@ -37,7 +39,8 @@ class ChatInput extends Component { updateMessageState...
1
diff --git a/includes/Modules/Thank_With_Google.php b/includes/Modules/Thank_With_Google.php @@ -28,7 +28,6 @@ use Google\Site_Kit\Core\REST_API\Exception\Invalid_Datapoint_Exception; use Google\Site_Kit\Core\Tags\Guards\Tag_Environment_Type_Guard; use Google\Site_Kit\Core\Tags\Guards\Tag_Verify_Guard; use Google\Site_...
2
diff --git a/src/component/utils/__tests__/isHTMLBRElement-test.js b/src/component/utils/__tests__/isHTMLBRElement-test.js * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * - * @emails oncall+draft-js + * @emails oncall+draft_js * @flow strict-...
14
diff --git a/workshops/reinvent2018/readme.md b/workshops/reinvent2018/readme.md @@ -996,7 +996,7 @@ Delete manually created resources throughout the laUbs: * Use your AWS Cloud9 IDE's terminal to remove the sample web site ``` -cd aws-ai-qna-bot/workshops/reinvent2018/bin +cd aws-ai-qna-bot/workshops/reinvent2018/scri...
3
diff --git a/src/components/Match/Draft/Draft.jsx b/src/components/Match/Draft/Draft.jsx @@ -187,7 +187,15 @@ const Draft = ({ let orderOne = []; let orderTwo = []; let picks = []; - if (startTime > 1584403200) { // post 7.25 + if (startTime > 1629255201) { // post 7.30 + orderOne = [1, 3, 5, 8, 9, 11, 13, 16, 17, 19, ...
1
diff --git a/addon/components/polaris-popover/content.js b/addon/components/polaris-popover/content.js @@ -2,7 +2,7 @@ import Ember from 'ember'; import layout from '../../templates/components/polaris-popover/content'; const { - $, + $: Ember$, Component, isNone, } = Ember; @@ -67,8 +67,8 @@ export default Component.ex...
12
diff --git a/accessibility-checker-extension/src/ts/devtools/DevToolsPanelApp.tsx b/accessibility-checker-extension/src/ts/devtools/DevToolsPanelApp.tsx @@ -48,7 +48,8 @@ interface IPanelState { learnMore : boolean, learnItem : IReportItem | null, showIssueTypeFilter: boolean[], - scanning: boolean // true when scan ta...
12
diff --git a/kamu/urls.py b/kamu/urls.py @@ -6,6 +6,7 @@ from django.views.generic import TemplateView, RedirectView from rest_framework import routers from django.contrib.auth.decorators import login_required from books import views +import os router = routers.DefaultRouter() @@ -15,9 +16,6 @@ router.register(r'copies...
0
diff --git a/types/index.d.ts b/types/index.d.ts @@ -50,6 +50,14 @@ export interface ProducerConfig { maxInFlightRequests?: number } +export interface Message { + key?: Buffer | string | null + value: Buffer | string | null + partition?: number + headers?: IHeaders + timestamp?: string +} + export interface Partitioner...
7
diff --git a/tools/builder.js b/tools/builder.js @@ -14,7 +14,7 @@ var // START var - rootPath = './app/', + rootPath = '../app/', buildPath = path.join(rootPath, 'build'), inputFilePath = path.join(rootPath, 'index.html'), html = fs.readFileSync(inputFilePath, 'utf8'), @@ -205,7 +205,7 @@ minifiedCss = uglifycss.proce...
3
diff --git a/packages/spotlight/SpotlightRootDecorator/SpotlightRootDecorator.js b/packages/spotlight/SpotlightRootDecorator/SpotlightRootDecorator.js @@ -40,12 +40,18 @@ const SpotlightRootDecorator = hoc((config, Wrapped) => { componentWillMount () { if (typeof window === 'object') { + const palmSystem = window.PalmS...
12
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/common/searchBox.js b/packages/node_modules/@node-red/editor-client/src/js/ui/common/searchBox.js } }); this.element.on("keydown",function(e) { - if (!menuShown && e.keyCode === 40) { - //DOWN + if (!menuShown && e.keyCode === 40 && $(this).val() === ...
1
diff --git a/.github/workflows/deployRelease.yml b/.github/workflows/deployRelease.yml @@ -96,5 +96,3 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} version: ${{ github.event.inputs.version }} - referencePrefixes: "PDCL-,CORE-,AN-" - referenceTargetUrlPrefix: "https://jira.corp.adobe.com/browse/"
2
diff --git a/app/models/delayed_job.rb b/app/models/delayed_job.rb @@ -25,7 +25,7 @@ class Delayed::Backend::ActiveRecord::Job def self.pending Delayed::Job. where("run_at > ? OR attempts = 0", Time.now). - where("failed_at IS NOT NULL"). + where("failed_at IS NULL"). order(run_at: :asc) end
1
diff --git a/includes/Core/Util/Tracking.php b/includes/Core/Util/Tracking.php @@ -82,29 +82,6 @@ final class Tracking { * @since 1.0.0 */ public function register() { - // Enqueue gtag script for Site Kit admin screens. - add_action( - 'googlesitekit_enqueue_screen_assets', - function () { - $this->print_gtag_script()...
2
diff --git a/services/analytics-service/app/api/controllers/mongo.js b/services/analytics-service/app/api/controllers/mongo.js @@ -460,9 +460,7 @@ const getAllComponentsData = async ( // eslint-disable-line try { if (config.timeWindows[timeFrame] > 1440 && 'day' in config.timeWindows) { // Group day buckets - // @todo:...
9
diff --git a/new-client/src/components/FeatureInfo/FeaturePropsParsing.js b/new-client/src/components/FeatureInfo/FeaturePropsParsing.js @@ -38,14 +38,13 @@ export default class FeaturePropsParsing { // console.log("root: ", a, b, c); // return a.children; // }, - // text: (text) => { - // let c = null; - // if (text.v...
6
diff --git a/sirepo/package_data/static/json/srw-schema.json b/sirepo/package_data/static/json/srw-schema.json }, "multipole": { "title": "Dipole", - "basic": [ + "basic": [], + "advanced": [ "field", "length", "distribution" - ], - "advanced": [] + ] }, "multiElectronAnimation": { "title": "Partially Coherent Intensit...
5
diff --git a/dc-worker-manager.js b/dc-worker-manager.js @@ -300,18 +300,28 @@ export class DcWorkerManager { chunkPosition.z * this.chunkSize * this.chunkSize }`; return await navigator.locks.request(chunkId, async (lock) => { - console.log('Lock : ' + lock.name); const worker = this.getNextWorker(); const result = aw...
0
diff --git a/components/bases-locales/charte/partners.js b/components/bases-locales/charte/partners.js @@ -11,7 +11,7 @@ function Partners({epci, companies, shuffledPartners}) { return ( <> <div className='partners-container'> - {partners.map(partner => <Partner key={partner.name} partnerInfos={partner} />)} + {partner...
0
diff --git a/src/App.js b/src/App.js @@ -67,8 +67,8 @@ const styles = StyleSheet.create({ const HomeStack = StackNavigator( { [HOME]: { screen: withShadow(HomeScreen) }, - [EVENT_DETAILS]: { screen: withShadow(EventDetailsScreen) }, - [FEATURED_EVENT_LIST]: { screen: withShadow(FeaturedEventListScreen) } + [EVENT_DETAI...
2
diff --git a/token-metadata/0xdfe691F37b6264a90Ff507EB359C45d55037951C/metadata.json b/token-metadata/0xdfe691F37b6264a90Ff507EB359C45d55037951C/metadata.json "symbol": "KARMA", "address": "0xdfe691F37b6264a90Ff507EB359C45d55037951C", "decimals": 4, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/js/cryptopia.js b/js/cryptopia.js @@ -533,10 +533,7 @@ module.exports = class cryptopia extends Exchange { }, params)); if (id in this.orders) this.orders[id]['status'] = 'canceled'; - return { - 'status': 'canceled', - 'info': response, - }; + return response; } parseOrder (order, market = undefined) {
13
diff --git a/package.json b/package.json "debug": "~2.2.0", "dot": "~1.0.2", "grainstore": "~1.6.0", - "mapnik": "cartodb/node-mapnik#query-variables", + "mapnik": "cartodb/node-mapnik#3.5.x-grid-variables", "queue-async": "~1.0.7", "redis-mpool": "0.4.1", "request": "~2.79.0",
4
diff --git a/test/outer-scroller.html b/test/outer-scroller.html outerScroller.scrollLeft = 100; }); + // Outer scroller never needs to be synced on iOS since it's always the one that gets scrolled. + if (!ios) { it('should scroll the outer scroller', () => { wheel(grid, 100, 0); expect(outerScroller.scrollLeft).to.equ...
8
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -128,6 +128,12 @@ class App extends THREE.Object3D { set instanceId(instanceId) { this.setComponent('instanceId', instanceId); } + get paused() { + return this.getComponent('paused'); + } + set paused(paused) { + this.setComponent('paused', paused); + } addMod...
0
diff --git a/src/stores/TierStore.js b/src/stores/TierStore.js @@ -182,8 +182,7 @@ class TierStore { if (storedIndex > -1) { whitelist[storedIndex].duplicated = true newItem.duplicated = true - - } else if (isAdded) return + } } else if (isAdded) return
2
diff --git a/lib/grammars.coffee b/lib/grammars.coffee @@ -156,6 +156,26 @@ module.exports = command: "bash" args: (context) -> ["-c", "g++ -std=c++14 -Wall -include stdio.h -include iostream '/mnt/" + path.posix.join.apply(path.posix, [].concat([context.filepath.split(path.win32.sep)[0].toLowerCase()], context.filepat...
0
diff --git a/_includes/content/github-buttons.html b/_includes/content/github-buttons.html <div class="ui mini horizontal divided link list"> <!-- Display last edited date of the page --> <div class=" disabled item"> - Last edit: {% last_modified_at %} + Last edit: {% page.last_modified_at %} </div> <!-- Link to the pa...
0
diff --git a/lib/optimize/DedupePlugin.js b/lib/optimize/DedupePlugin.js class DedupePlugin { apply(compiler) { compiler.plugin("compilation", (compilation) => { - compilation.warnings.push(new Error("DedupePlugin: This plugin was removed from webpack. remove it from configuration.")); + compilation.warnings.push(new E...
7
diff --git a/physics-manager.js b/physics-manager.js @@ -4,6 +4,7 @@ it contains code for character capsules and world simulation. */ import * as THREE from 'three'; +import {CapsuleGeometry} from './CapsuleGeometry.js'; import uiManager from './ui-manager.js'; import {getRenderer, camera, dolly} from './renderer.js'; ...
0
diff --git a/src/schemas/json/ocelot.json b/src/schemas/json/ocelot.json "RouteIsCaseSensitive": { "$id": "#/properties/Routes/items/properties/RouteIsCaseSensitive", "type": "boolean", - "title": "The Rerouteiscasesensitive Schema" + "title": "The Routeiscasesensitive Schema" }, "ServiceName": { "$id": "#/properties/R...
10
diff --git a/articles/api-auth/intro.md b/articles/api-auth/intro.md @@ -172,10 +172,6 @@ Given that [ID tokens should no longer be used as API tokens](/api-auth/tutorial At the moment there is no OIDC-compliant mechanism to obtain third-party API tokens. In order to facilitate a gradual migration to the new authentica...
2
diff --git a/src/libs/Pusher/pusher.js b/src/libs/Pusher/pusher.js +import Onyx from 'react-native-onyx'; import _ from 'underscore'; +import ONYXKEYS from '../../ONYXKEYS'; import Pusher from './library'; import TYPE from './EventType'; import Log from '../Log'; +let shouldForceOffline = false; +Onyx.connect({ + key: ...
8
diff --git a/docs/RuntimeConfig/index.md b/docs/RuntimeConfig/index.md @@ -38,10 +38,11 @@ const App = new MyApp(options); | `memoryPressure` | Number | 24e6 | Maximum GPU memory usage in pixels (see details below) | | `clearColor` | Float[] | [0,0,0,0] | Background color in ARGB values (0 to 1) | | `defaultFontFace` |...
3
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md ### Summary -Provide a general description of the code changes in your pull +_Remove this paragraph and provide a general description of the code changes in your pull request... were there any bugs you had fixed? If so, mention them. If th...
7
diff --git a/src/encoded/static/components/genome_browser.js b/src/encoded/static/components/genome_browser.js @@ -129,14 +129,14 @@ const getDefaultCoordinates = (defaultLocation, assembly, annotation, ignoreCach }, { file_format: 'bigBed', - href: '/files/ENCFF088UEJ/@@download/ENCFF088UEJ.bigBed', - dataset: '/annot...
3
diff --git a/src/lib/core.d.ts b/src/lib/core.d.ts @@ -706,6 +706,20 @@ export default class SunEditor { */ audioUploadHandler: (xmlHttp: XMLHttpRequest, info: audioInputInformation, core: Core) => void; + /** + * @description An event when toggling between code view and wysiwyg view. + * @param isCodeView: Whether the...
3
diff --git a/README.md b/README.md @@ -53,7 +53,7 @@ See the integrated Swagger UI instance on [/api](https://demo.grocy.info/api). ### Barcode readers & camera scanning Some fields also allow to select a value by scanning a barcode. It works best when your barcode reader prefixes every barcode with a letter which is n...
0
diff --git a/character-controller.js b/character-controller.js @@ -70,6 +70,12 @@ class Player extends THREE.Object3D { hasAction(type) { return this.actions.some(action => action.type === type); } + addAction(action) { + this.actions.push(action); + } + removeAction(type) { + this.actions = this.actions.filter(action ...
0
diff --git a/src/video/video.js b/src/video/video.js // add our canvas if (typeof settings.wrapper !== "undefined") { settings.wrapper = document.getElementById(settings.wrapper); - } else { + } + + // fallback, if invalid target or non HTMLElement object + if (!settings.wrapper) { // if wrapper is not defined, add the...
1
diff --git a/desktop/core/library/f.js b/desktop/core/library/f.js @@ -13,8 +13,8 @@ function OperatorF (orca, x, y, passive) { this.ports.output = { x: 0, y: 1 } this.run = function () { - const a = this.listen(this.ports.input.a, true) - const b = this.listen(this.ports.input.b, true) + const a = this.listen(this.por...
11
diff --git a/src/sdk/p2p/peerconnection-channel.js b/src/sdk/p2p/peerconnection-channel.js @@ -19,21 +19,6 @@ export class P2PPeerConnectionChannelEvent extends Event { } } -const ChannelState = { - READY: 1, // Ready to chat. - OFFERED: 2, // Sent invitation to remote user. - PENDING: 3, // Received an invitation. - M...
1
diff --git a/src/server/node_services/nodes_monitor.js b/src/server/node_services/nodes_monitor.js @@ -746,8 +746,8 @@ class NodesMonitor extends EventEmitter { dbg.log0('_get_agent_info: set node name', item.node.name, 'to', updates.name); - let agent_config = system_store.data.get_by_id(item.node.agent_config); - let...
12