code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/aleph/logic/entities.py b/aleph/logic/entities.py @@ -100,7 +100,7 @@ def entity_tags(entity, authz=None, edge_types=registry.pivots):
query.node(Node(prop.type, value), count=True)
for res in query.execute():
field = res.node.type.group
- if res.count > 1:
+ if res.count is not None and res.count > 1:
yie... | 9 |
diff --git a/src/article/shared/ArticleToolbarPackage.js b/src/article/shared/ArticleToolbarPackage.js @@ -110,7 +110,7 @@ export default {
]
},
{
- name: 'figure-panel-tools',
+ name: 'figure-tools',
type: 'dropdown',
style: 'descriptive',
hideDisabled: true,
@@ -224,8 +224,8 @@ export default {
// File tools
config.a... | 10 |
diff --git a/diorama.js b/diorama.js @@ -714,6 +714,9 @@ const createPlayerDiorama = ({
setObjects(newObjects) {
objects = newObjects;
},
+ getCanvases() {
+ return canvases;
+ },
resetCanvases() {
canvases.length = 0;
},
| 0 |
diff --git a/includes/Core/Modules/Modules.php b/includes/Core/Modules/Modules.php @@ -263,7 +263,10 @@ final class Modules {
uasort(
$this->modules,
function( Module $a, Module $b ) {
- return $a->order > $b->order;
+ if ( $a->order === $b->order ) {
+ return 0;
+ }
+ return ( $a->order < $b->order ) ? -1 : 1;
}
);
| 7 |
diff --git a/token-metadata/0x8b79656FC38a04044E495e22fAD747126ca305C4/metadata.json b/token-metadata/0x8b79656FC38a04044E495e22fAD747126ca305C4/metadata.json "symbol": "AGVC",
"address": "0x8b79656FC38a04044E495e22fAD747126ca305C4",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/site/production-checklist.xml b/site/production-checklist.xml @@ -136,38 +136,47 @@ limitations under the License.
</doc:subsection>
<doc:subsection name="resource-limits-disk-space">
- <doc:heading>Free Disk Space</doc:heading>
+ <doc:heading>Disk Space</doc:heading>
<p>
- Some free disk space should be a... | 7 |
diff --git a/import.js b/import.js @@ -15,6 +15,6 @@ function exec (command) {
exec(`git remote add ${remoteName} ${from}`)
exec(`git fetch ${remoteName}`)
-exec(`git merge -s ours --no-commit ${remoteName}/master`)
+exec(`git merge -s ours --allow-unrelated-histories --no-commit ${remoteName}/master`)
exec(`git read-t... | 11 |
diff --git a/src/kea/build.ts b/src/kea/build.ts @@ -135,7 +135,9 @@ export function getBuiltLogic(
const key = props && input.key ? input.key(props) : undefined
if (input.key && typeof key === 'undefined') {
- throw new Error(`[KEA] Must have key to build logic, got props: ${JSON.stringify(props)}`)
+ const path = typ... | 7 |
diff --git a/Platform/Client/dashboardsInterface.js b/Platform/Client/dashboardsInterface.js @@ -35,7 +35,7 @@ exports.newDashboardsInterface = function newDashboardsInterface() {
// eventsServerClient.raiseEvent('Task Client - ' + message.event.taskId, 'Task Status', event)
function newMessage (message) {
- console.lo... | 10 |
diff --git a/redactions/admin/datasets.js b/redactions/admin/datasets.js import { createAction, createThunkAction } from 'redux-tools';
-import DatasetsService from 'services/DatasetsService';
+import { fetchDatasets } from 'services/dataset';
/**
* CONSTANTS
@@ -140,12 +140,19 @@ export const setPaginationTotal = crea... | 14 |
diff --git a/papers/static_analysis2020/figures/consistency_property.eps b/papers/static_analysis2020/figures/consistency_property.eps %!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.17.3 (https://cairographics.org)
-%%CreationDate: Mon Jul 6 13:38:54 2020
+%%CreationDate: Mon Jul 6 14:48:54 2020
%%Pages: 1
%%DocumentData: ... | 7 |
diff --git a/modules/xerte/parent_templates/Nottingham/common_html5/js/xenith.js b/modules/xerte/parent_templates/Nottingham/common_html5/js/xenith.js @@ -4488,10 +4488,13 @@ var XENITH = (function ($, parent) { var self = parent.GLOSSARY = {};
let nodes = getTextNodes(fragment);
let index = 'textContent' in document.b... | 1 |
diff --git a/ios/Ecency/Base.lproj/LaunchScreen.xib b/ios/Ecency/Base.lproj/LaunchScreen.xib <?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="19162" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen... | 13 |
diff --git a/src/encoded/static/components/award.js b/src/encoded/static/components/award.js @@ -538,7 +538,7 @@ const ChartRenderer = (props) => {
</div>
);
};
-// Version 1 of creating a new panel
+// Create new panel with genus buttons
class NewPanel extends React.Component {
render() {
const { selectedOrganisms, ha... | 0 |
diff --git a/src/libs/actions/Session.js b/src/libs/actions/Session.js @@ -111,7 +111,7 @@ function createAccount(password, twoFactorAuthCode, exitTo) {
* @param {String} twoFactorAuthCode
* @param {String} exitTo
*/
-function authenticateAndCreateAccount(password, twoFactorAuthCode, exitTo) {
+function authenticateAnd... | 10 |
diff --git a/package.json b/package.json "chewbacca": "1.10.0",
"coveralls": "^2.11.9",
"es5-shim": "4.0.5",
- "eslint": "2.4.0",
- "eslint-config-onelint": "1.0.2",
+ "eslint": "2.13.1",
+ "eslint-config-onelint": "1.2.0",
"eslint-plugin-import": "1.16.0",
"istanbul": "0.3.16",
"jasmine": "2.2.1",
| 3 |
diff --git a/token-metadata/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8/metadata.json b/token-metadata/0x8762db106B2c2A0bccB3A80d1Ed41273552616E8/metadata.json "symbol": "RSR",
"address": "0x8762db106B2c2A0bccB3A80d1Ed41273552616E8",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/index.jsx b/src/index.jsx @@ -4,6 +4,7 @@ import Calendar from "./calendar";
import Portal from "./portal";
import PopperComponent, { popperPlacementPositions } from "./popper_component";
import classnames from "classnames";
+import set from "date-fns/set";
import startOfDay from "date-fns/startOfDay";... | 9 |
diff --git a/src/encoded/static/components/search.js b/src/encoded/static/components/search.js @@ -506,6 +506,7 @@ var Dataset = module.exports.Dataset = React.createClass({
<div className="data-row">
{result['dataset_type'] ? <div><strong>Dataset type: </strong>{result['dataset_type']}</div> : null}
{targets && target... | 0 |
diff --git a/src/app/stepway/i18n/local-en.json b/src/app/stepway/i18n/local-en.json "EDIT_TAB" : "Edit/Create",
"PREVIEW_TAB" : "Preview",
- "WIZARD_LINES" : "lines",
- "WIZARD_LAYOUT" : "layout",
- "WIZARD_CONTROLS" : "controls",
- "WIZARD_SAVE" : "save",
+ "WIZARD_LINES" : "Lines",
+ "WIZARD_LAYOUT" : "Layout",
+ "W... | 1 |
diff --git a/io-manager.js b/io-manager.js @@ -292,6 +292,9 @@ ioManager.bindInput = () => {
if (weaponsManager.canPush()) {
ioManager.keys.forward = true;
} else {
+ if (weaponsManager.canJumpOff()) {
+ weaponsManager.jumpOff();
+ }
physicsManager.setFlyState(!physicsManager.getFlyState());
}
break;
| 0 |
diff --git a/.github/workflows/utils/android.yml b/.github/workflows/utils/android.yml @@ -42,6 +42,10 @@ jobs:
echo "APPCENTER_NAME=GoodDollar/GoodDollar-Android-production" >> $GITHUB_ENV
echo "APPCENTER_TOKEN=${{ secrets.APPCENTER_ANDROID_PROD }}" >> $GITHUB_ENV
echo "APPCENTER_CODEPUSH_TOKEN=${{ secrets.APPCENTER_C... | 0 |
diff --git a/src/components/dashboard/ReceiveAmount.js b/src/components/dashboard/ReceiveAmount.js @@ -8,7 +8,7 @@ import { useErrorDialog } from '../../lib/undux/utils/dialog'
import goodWallet from '../../lib/wallet/GoodWallet'
import { generateCode, generateReceiveShareObject } from '../../lib/share'
-import { BigGo... | 0 |
diff --git a/README.md b/README.md @@ -77,6 +77,7 @@ If you'd rather use the addon as a script via per example *Greasemonkey* or *Tam
// @name Cookie Monster
// @namespace Cookie
// @include http://orteil.dashnet.org/cookieclicker/
+// @include https://orteil.dashnet.org/cookieclicker/
// @version 1
// @grant none
// =... | 0 |
diff --git a/src/components/base/Select/index.js b/src/components/base/Select/index.js @@ -4,7 +4,6 @@ import React, { PureComponent } from 'react'
import Downshift from 'downshift'
import styled from 'styled-components'
import { space } from 'styled-system'
-import get from 'lodash/get'
import type { Element } from 'r... | 7 |
diff --git a/ui/i18n-helper.js b/ui/i18n-helper.js @@ -20,10 +20,10 @@ const getMessage = (locale, key, substitutions) => {
let phrase = entry.message
// perform substitutions
if (substitutions && substitutions.length) {
- phrase = phrase.replace(/\$1/g, substitutions[0])
- if (substitutions.length > 1) {
- phrase = ph... | 11 |
diff --git a/publish/src/commands/deploy/configure-system-settings.js b/publish/src/commands/deploy/configure-system-settings.js @@ -48,33 +48,13 @@ module.exports = async ({
}
const exchangeFeeRates = await getDeployParameter('EXCHANGE_FEE_RATES');
- // override individual currencyKey / synths exchange rates
- const s... | 2 |
diff --git a/src/plugins/position/components/TableEnhancer.js b/src/plugins/position/components/TableEnhancer.js @@ -9,10 +9,11 @@ const Table = OriginalComponent => compose(
selectors: PropTypes.object,
}),
connect((state, props) => {
- const { tableHeightSelector, tableWidthSelector } = props.selectors;
+ const { tab... | 0 |
diff --git a/testcafe/testsUtility.js b/testcafe/testsUtility.js @@ -15,8 +15,8 @@ async function fetchFromAPI(requestURL) {
const response = await fetch(requestURL);
const jsonData = await response.json();
- console.log(`writing ./testcafe/dummyFiles/${path2file(requestURL)}.json`);
- fs.writeFileSync(`./testcafe/dumm... | 10 |
diff --git a/core/editor.js b/core/editor.js @@ -134,6 +134,11 @@ class Editor {
}
getHTML(index, length) {
+ const [line, offset] = this.scroll.line(index);
+ const [last] = this.scroll.line(index + length);
+ if (line === last) {
+ return convertHTML(line, offset, length);
+ }
return convertHTML(this.scroll, index, l... | 9 |
diff --git a/src/core/config.js b/src/core/config.js @@ -11,7 +11,7 @@ export type Config = {
devtools: boolean;
errorHandler: ?(err: Error, vm: Component, info: string) => void;
ignoredElements: Array<string>;
- keyCodes: { [key: string]: number };
+ keyCodes: { [key: string]: number | Array<number> };
// platform
isR... | 7 |
diff --git a/src/components/ProductCard.js b/src/components/ProductCard.js @@ -84,27 +84,38 @@ const SubjectContainer = styled.div`
margin-top: 1.25rem;
`
-const hueHash = (subject, offset = 0) =>
- ((subject.split("").reduce((a, b) => {
- a = (a << 5) - a + b.charCodeAt(0)
- return a & a
- }, 0) +
- offset) %
- 360) *... | 13 |
diff --git a/packages/gatsby/src/utils/webpack-modify-validate.js b/packages/gatsby/src/utils/webpack-modify-validate.js @@ -12,6 +12,7 @@ import apiRunnerNode from "./api-runner-node"
// https://github.com/js-dxtools/webpack-validator#customizing
const validationWhitelist = Joi.object({
stylus: Joi.any(),
+ sassLoader... | 11 |
diff --git a/build.gradle b/build.gradle @@ -13,9 +13,7 @@ buildscript {
}
dependencies {
- classpath 'com.moowork.gradle:gradle-node-plugin:0.13'
- classpath 'com.moowork.gradle:gradle-gulp-plugin:0.13'
- classpath 'com.moowork.gradle:gradle-grunt-plugin:0.13'
+ classpath "com.moowork.gradle:gradle-node-plugin:1.1.1"
... | 3 |
diff --git a/docs/content/examples/charts/bar/Bullets.js b/docs/content/examples/charts/bar/Bullets.js -import { HtmlElement, Grid, Repeater } from 'cx/widgets';
+import { HtmlElement, Grid, Repeater, Content, Tab } from 'cx/widgets';
import { Controller, PropertySelection } from 'cx/ui';
import { Svg, Rectangle, Text ... | 0 |
diff --git a/lib/core/service_layer/fog_driver/client_helper.rb b/lib/core/service_layer/fog_driver/client_helper.rb @@ -46,7 +46,11 @@ module Core
}
if @connection_options and @connection_options.is_a?(Hash)
- result.merge!(@connection_options)
+ if result[:connection_options]
+ result[:connection_options].merge!(@con... | 12 |
diff --git a/doc/_static/css/index.css b/doc/_static/css/index.css @@ -27,10 +27,6 @@ ul.current {
background: #343131;
}
-.wy-menu .toctree-l1 > a {
- "border: 0!important;
-}
-
ul > .toctree-l1.current > ul > .toctree-l2 {
background: #edf0f2;
}
@@ -123,7 +119,6 @@ a:visited:not(.icon) {
.wy-side-scroll {
scrollbar-w... | 13 |
diff --git a/README.md b/README.md # GoodDollar DApp
-
+[](https://bugsnag.com)
[](https://travis-ci.com/GoodDollar/GoodDAPP) [ => {
- const links = [{
+ const links = [
+ {
tooltip: strings.app_githu... | 7 |
diff --git a/handlers/awsJobs.js b/handlers/awsJobs.js @@ -70,18 +70,32 @@ let handlers = {
* Describe Job Definitions
*/
describeJobDefinitions(req, res, next) {
+ //recursive function to handle grabbing all job definitions if more than 100 exist on batch
+ let getJobDefinitions = (params, jobDefs, callback) => {
+ aw... | 9 |
diff --git a/README.md b/README.md @@ -11,6 +11,12 @@ This is not an actual mobile application. This repository contains only React Na
* [Fastline run instructions](#fastline-run-instructions)
* [Environment](#environment)
* [Project structure](#project-structure)
+* [Native modules](#native-modules)
+ * [Adding a new ... | 0 |
diff --git a/src/encoded/static/components/genome_browser.js b/src/encoded/static/components/genome_browser.js @@ -830,7 +830,7 @@ class GenomeBrowser extends React.Component {
}));
}
let labelLength = 0;
- const defaultHeight = 34;
+ const defaultHeight = 29;
const extraLineHeight = 12;
const maxCharPerLine = 26;
// S... | 2 |
diff --git a/src/middlewares/http.js b/src/middlewares/http.js @@ -6,13 +6,13 @@ export default (path = '/*', fns, config) => {
path = '/*';
}
const lastFn = fns[fns.length - 1];
+ const len = fns.length;
return http(
path,
async (req, res) => {
let result;
let fn;
let i = 0;
- const len = fns.length;
for (; i < len; i... | 7 |
diff --git a/.github/workflows/base-shell.yml b/.github/workflows/base-shell.yml @@ -7,7 +7,7 @@ on:
- "packages/base-shell/**"
workflow_dispatch:
jobs:
- rmw-shell:
+ base-shell:
runs-on: ubuntu-latest
environment: prod
steps:
@@ -24,7 +24,7 @@ jobs:
working-directory: ./packages/base-shell
env:
NODE_AUTH_TOKEN: ${{se... | 10 |
diff --git a/checkfiles/checkfiles.py b/checkfiles/checkfiles.py @@ -333,6 +333,9 @@ def process_read_name_line(read_name_line,
read_numbers_set,
srr_flag)
elif srr_read_name_pattern.match(read_name.split(' ')[0]) is not None:
+ # in case the readname is following SRR format, read number will be
+ # defined using SRR f... | 0 |
diff --git a/Guidelines/ServiceAPIGuidelines.md b/Guidelines/ServiceAPIGuidelines.md @@ -160,6 +160,7 @@ DELETE requests are used to delete resources. The semantic is best described as
* DELETE requests are usually applied to single resources, not on collection resources, as this would imply deleting the entire collect... | 13 |
diff --git a/bin/oref0-pump-loop.sh b/bin/oref0-pump-loop.sh @@ -291,6 +291,8 @@ function refresh_old_profile {
}
function refresh_smb_temp_and_enact {
+ # set mtime of monitor/glucose.json to the time of its most recent glucose value
+ touch -d "$(date -R -d @$(jq .[0].date/1000 monitor/glucose.json))" monitor/glucose... | 12 |
diff --git a/source/views/collections/ListView.js b/source/views/collections/ListView.js @@ -50,10 +50,16 @@ const ListView = Class({
};
this.controller = null;
+ this.focused = null;
this.selection = null;
ListView.parent.constructor.apply( this, arguments );
+ const focused = this.get( 'focused' );
+ if ( focused ) {... | 0 |
diff --git a/src/cn.js b/src/cn.js @@ -94,7 +94,7 @@ const rq=node_require,fs=rq('fs'),cp=rq('child_process'),net=rq('net'),os=rq('os
c.forwardIn('',0,(e,rport)=>{if(e)throw e
let s0='';for(let k in env)s0+=`${k}=${shEsc(env[k])} `
let s1=x.args?x.args.replace(/\n$/,'').split('\n').map(shEsc).join(' '):''
- sm.write(`$... | 12 |
diff --git a/app/App.js b/app/App.js @@ -37,7 +37,9 @@ class App extends Component<{
if (!environment.isDev()) return undefined;
try {
const mobxDevToolsPackage = require('mobx-react-devtools').default;
- return React.createElement(mobxDevToolsPackage);
+ return React.createElement(mobxDevToolsPackage, {
+ position: 't... | 5 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/view-tools.js b/packages/node_modules/@node-red/editor-client/src/js/ui/view-tools.js @@ -1015,7 +1015,7 @@ RED.view.tools = (function() {
const nodeDef = n._def || RED.nodes.getType(n.type)
if (nodeDef && nodeDef.defaults && nodeDef.defaults.name) {
... | 11 |
diff --git a/app/index.js b/app/index.js @@ -71,7 +71,7 @@ function exposeModules(names) {
}
function formatDate(date) {
- return `${date.getDay()}.${date.getMonth() + 1}.${date.getFullYear()} ${pad(date.getHours())}:${pad(date.getMinutes())}`
+ return `${date.getDate()}.${date.getMonth() + 1}.${date.getFullYear()} ${p... | 1 |
diff --git a/world.js b/world.js import * as THREE from './three.module.js';
import storage from './storage.js';
-import {web3} from './blockchain.js';
import {XRChannelConnection} from './xrrtc.js';
import Y from './yjs.js';
import {loginManager} from './login.js';
@@ -33,15 +32,6 @@ const localMatrix = new THREE.Matr... | 2 |
diff --git a/website/learn-programming-challenge/downloads-and-starter-kits/create-new-starter-kit.md b/website/learn-programming-challenge/downloads-and-starter-kits/create-new-starter-kit.md @@ -56,7 +56,7 @@ Please try to generally adhere to the API used in [Python3 starter kit](https://
Of course, if changes to thi... | 4 |
diff --git a/token-metadata/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59/metadata.json b/token-metadata/0xDc5864eDe28BD4405aa04d93E05A0531797D9D59/metadata.json "symbol": "FNT",
"address": "0xDc5864eDe28BD4405aa04d93E05A0531797D9D59",
"decimals": 6,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}... | 3 |
diff --git a/content/components/control-input/accessibility/example-code.md b/content/components/control-input/accessibility/example-code.md <div>
<div class="au-control-input">
<input class="js-focus-me au-control-input__input" type="checkbox" name="checkbox-ex" id="cb-phone">
- <label class="au-control-input__text" f... | 13 |
diff --git a/src/js/modules/Edit/List.js b/src/js/modules/Edit/List.js @@ -161,6 +161,8 @@ export default class Edit{
params.placeholderLoading = typeof params.placeholderLoading === "undefined" ? "Searching ..." : typeof params.placeholderLoading;
params.placeholderEmpty = typeof params.placeholderEmpty === "undefined... | 9 |
diff --git a/packages/slate-cli/src/commands/theme.js b/packages/slate-cli/src/commands/theme.js @@ -8,7 +8,7 @@ import {downloadFromUrl, unzip, startProcess, writePackageJsonSync} from '../uti
export default function(program) {
program
- .command('theme <name>')
+ .command('theme [name]')
.alias('t')
.description('Gen... | 13 |
diff --git a/lib/modules/vyper/index.js b/lib/modules/vyper/index.js @@ -14,9 +14,10 @@ class Vyper {
compile_vyper(contractFiles, cb) {
let self = this;
- async.waterfall([
- function compileContracts(callback) {
- self.logger.info("compiling vyper contracts...");
+ if (!contractFiles || !contractFiles.length) {
+ ret... | 2 |
diff --git a/react/src/base/inputs/SprkRadio.stories.js b/react/src/base/inputs/SprkRadio.stories.js @@ -36,9 +36,7 @@ export default {
info: `
${markdownDocumentationLinkBuilder('input')}
- Spark radios have been refactored into a compositional style component.
-The version that uses <code>SprkSelectionInput</code> wi... | 3 |
diff --git a/src/tabris/widgets/NavigationView.js b/src/tabris/widgets/NavigationView.js @@ -8,7 +8,7 @@ export default class NavigationView extends Composite {
constructor(properties) {
super(properties);
- this._nativeListen('backnavigation', true);
+ this._nativeListen('backNavigation', true);
}
get _nativeType() {
... | 10 |
diff --git a/src/scss/components/common/container.scss b/src/scss/components/common/container.scss @import '../../breakpoints.scss';
.container {
- max-width: 1140px;
+ max-width: 1000px;
margin-right: 1.5rem;
margin-left: 1.5rem;
@media (min-width: $viewport-md) {
margin-left: auto;
margin-right: auto;
}
+ @media (min... | 1 |
diff --git a/src/core/lib/FileSignatures.mjs b/src/core/lib/FileSignatures.mjs @@ -1282,7 +1282,8 @@ export const FILE_SIGNATURES = {
extension: "dylib",
mime: "application/octet-stream",
description: "",
- signature: {
+ signature: [
+ {
0: 0xca,
1: 0xfe,
2: 0xba,
@@ -1292,7 +1293,14 @@ export const FILE_SIGNATURES = ... | 0 |
diff --git a/packages/web/src/components/list/MultiList.js b/packages/web/src/components/list/MultiList.js @@ -42,7 +42,7 @@ class MultiList extends Component {
this.updateQueryOptions(this.props);
if (this.props.defaultSelected) {
- this.setValue(this.props.defaultSelected);
+ this.setValue(this.props.defaultSelected,... | 1 |
diff --git a/content/articles/implementing-africa-talking-sms-api-using-nodejs/index.md b/content/articles/implementing-africa-talking-sms-api-using-nodejs/index.md @@ -7,7 +7,7 @@ title: Implementing Africa's Talking SMS API using Node.js
description: This article will guide the reader on how to incorporate Africa Tal... | 1 |
diff --git a/core/pipeline-driver/lib/datastore/graph-store.js b/core/pipeline-driver/lib/datastore/graph-store.js @@ -126,8 +126,8 @@ class GraphStore {
_mapTask(task) {
return {
taskId: task.taskId,
- input: this._parseInput(task),
- output: task.result,
+ // input: this._parseInput(task),
+ // output: task.result,
s... | 2 |
diff --git a/articles/connections/calling-an-external-idp-api.md b/articles/connections/calling-an-external-idp-api.md @@ -170,7 +170,7 @@ You cannot follow the same process from a frontend app because it's a public cli
SPA's code can be viewed and altered and native/mobile apps can be decompiled and inspected. As such... | 0 |
diff --git a/lib/cartodb/backends/layer-stats/mapnik-layer-stats.js b/lib/cartodb/backends/layer-stats/mapnik-layer-stats.js @@ -35,10 +35,10 @@ MapnikLayerStats.prototype.is = function (type) {
return this._types[type] ? this._types[type] : false;
};
-function queryPromise(dbConnection, query, callback) {
+function qu... | 10 |
diff --git a/src/components/AppSwitch.js b/src/components/AppSwitch.js @@ -59,7 +59,7 @@ class AppSwitch extends React.Component<LoadingProps, {}> {
const { credsOrError } = await Promise.all([checkAuthStatus(this.props.store), delay(TIMEOUT)]).then(
([authResult]) => authResult
)
- // debugger
+
if (this.props.store.g... | 2 |
diff --git a/assets/js/modules/thank-with-google/datastore/publications.js b/assets/js/modules/thank-with-google/datastore/publications.js @@ -30,7 +30,9 @@ const fetchGetPublicationsStore = createFetchStore( {
baseName: 'getPublications',
storeName: MODULES_THANK_WITH_GOOGLE,
controlCallback: () => {
- return API.get(... | 12 |
diff --git a/src/components/dragelement/index.js b/src/components/dragelement/index.js @@ -124,8 +124,6 @@ dragElement.init = function init(options) {
var clampFn = options.clampFn || _clampFn;
function onStart(e) {
- e.preventDefault();
-
// make dragging and dragged into properties of gd
// so that others can look at... | 11 |
diff --git a/src/apps.json b/src/apps.json "headers": {
"Set-cookie": "_gitlab_session"
},
+ "html": [
+ "<meta content=\"GitLab\" property=\"og:site_name\">",
+ "<meta content=\"https?://[^/]+/assets/gitlab_logo-"
+ ],
"icon": "GitLab.svg",
"implies": [
"Ruby",
| 7 |
diff --git a/src/layers/core/solid-polygon-layer/solid-polygon-layer.js b/src/layers/core/solid-polygon-layer/solid-polygon-layer.js @@ -117,10 +117,9 @@ export default class SolidPolygonLayer extends Layer {
updateState({props, oldProps, changeFlags}) {
super.updateState({props, oldProps, changeFlags});
- const geomet... | 1 |
diff --git a/server/test/migrations/nedb-to-sqlite.js b/server/test/migrations/nedb-to-sqlite.js @@ -221,8 +221,8 @@ describe('v4-to-v5', function () {
item.user_id === original.userId &&
item.user_email === original.userEmail &&
item.connection_name === original.connectionName &&
- new Date(item.start_time).toISOStrin... | 8 |
diff --git a/lib/node_modules/@stdlib/repl/ctor/lib/main.js b/lib/node_modules/@stdlib/repl/ctor/lib/main.js @@ -395,7 +395,7 @@ setNonEnumerableReadOnly( REPL.prototype, 'reset', function onReset() {
this.resetContext();
// Clear an output TTY stream of any previous commands and output:
- this.clearScreen();
+ this.cl... | 10 |
diff --git a/src/components/annotations/draw.js b/src/components/annotations/draw.js @@ -209,9 +209,13 @@ function drawRaw(gd, options, index, subplotId, xa, ya) {
var font = options.font;
+ var text = fullLayout.metatext ?
+ Lib.templateString(options.text, {metatext: fullLayout.metatext}) :
+ options.text;
+
var annT... | 0 |
diff --git a/admin-base/ui.apps/src/main/js/apiImpl.js b/admin-base/ui.apps/src/main/js/apiImpl.js @@ -147,6 +147,10 @@ function populateView(path, name, data) {
}
+function $i18n(key) {
+ return Vue.prototype.$i18n(key);
+}
+
function updateExplorerDialog() {
const view = callbacks.getView()
const page = get(view, '/s... | 7 |
diff --git a/src/server/routes/hackmd.js b/src/server/routes/hackmd.js @@ -191,8 +191,8 @@ module.exports = function(crowi, app) {
const { status, headers } = hackmdResponse;
- // validate HackMD/CodiMD specific header
- if (headers['codimd-version'] == null && headers['hackmd-version'] == null) {
+ // validate HackMD/... | 11 |
diff --git a/localization/strings.pot b/localization/strings.pot @@ -2308,60 +2308,3 @@ msgstr ""
msgid "Average execution frequency"
msgstr ""
-
-msgid "ar"
-msgstr ""
-
-msgid "bg_BG"
-msgstr ""
-
-msgid "da_DK"
-msgstr ""
-
-msgid "es_419"
-msgstr ""
-
-msgid "fr_FR"
-msgstr ""
-
-msgid "hi"
-msgstr ""
-
-msgid "hr"... | 2 |
diff --git a/docs/nav/nav-menu.yml b/docs/nav/nav-menu.yml url: /documentation/reference/testcafe-api/testcafe/createlivemoderunner.md
- name: createRunner
url: /documentation/reference/testcafe-api/testcafe/createrunner.md
+ - name: Plugin API
+ content:
+ - name: BrowserProvider Interface
+ url: /documentation/refere... | 0 |
diff --git a/parsers/utils.py b/parsers/utils.py @@ -108,7 +108,7 @@ def merge_cases(oldcases, newcases):
try:
joinedDays = sorted(res[c]+newcases[c], key=functools.cmp_to_key(compare_day))
except:
- print('problem with ',c,res[c], newcases[c])
+ print(f'problem with {c}:\nRes: {res[c]}\n\n {newcases[c]}')
prevDay = jo... | 1 |
diff --git a/tests/phpunit/integration/Modules/PageSpeed_InsightsTest.php b/tests/phpunit/integration/Modules/PageSpeed_InsightsTest.php @@ -25,16 +25,7 @@ class PageSpeed_InsightsTest extends TestCase {
use Module_With_Scopes_ContractTests;
public function test_is_connected() {
- $user_id = $this->factory()->user->cre... | 3 |
diff --git a/contracts/FuturesMarket.sol b/contracts/FuturesMarket.sol @@ -21,8 +21,6 @@ import "@nomiclabs/buidler/console.sol";
// Remaining Functionality
-// Parameters into struct
-// Ensure total system debt is being computed properly.
// Merge in develop
// Consider not exposing signs of short vs long positions
/... | 2 |
diff --git a/javascript/stimulus_reflex.js b/javascript/stimulus_reflex.js @@ -58,11 +58,12 @@ const createSubscription = controller => {
actionCableConsumer.subscriptions.create(channel, {
received: data => {
if (!data.cableReady) return
- if (!data.operations.morph || !data.operations.morph.length) return
+ if (data.... | 11 |
diff --git a/web/includes/js/spaceassess.js b/web/includes/js/spaceassess.js @@ -776,12 +776,21 @@ $(function() {
// Start a new session as soon as a location is selected
startCollecting();
- // TODO: Handle count rows that represent more than 1 person
- Person.all().filter('session', '=', currentSession).filter('locat... | 9 |
diff --git a/articles/api-auth/user-consent.md b/articles/api-auth/user-consent.md @@ -7,6 +7,27 @@ title: User consent and third-party clients
The [OIDC-conformant authentication pipeline](/api-auth/tutorials/adoption) supports defining [resource servers (i.e. APIs) as entities separate from clients](/api-auth/tutoria... | 7 |
diff --git a/assets/js/googlesitekit/datastore/user/surveys.test.js b/assets/js/googlesitekit/datastore/user/surveys.test.js @@ -26,7 +26,6 @@ import {
import { createCacheKey } from '../../api';
import { setItem, setSelectedStorageBackend } from '../../api/cache';
import { STORE_NAME } from './constants';
-import fetc... | 2 |
diff --git a/components/labelsviewer/labelsviewer.js b/components/labelsviewer/labelsviewer.js @@ -76,9 +76,12 @@ LabelsViewer.prototype.__refreshUI = function() {
</div>
<div class='checklist'>
+ <label> Polygon <input type='checkbox' value='free' checked/></label>
+ <label> Square <input type='checkbox' value='square... | 12 |
diff --git a/packages/react-jsx-highcharts/src/components/Axis/Axis.js b/packages/react-jsx-highcharts/src/components/Axis/Axis.js @@ -11,7 +11,7 @@ class Axis extends Component {
static propTypes = {
type: validAxisTypes,
- id: PropTypes.string.isRequired,
+ id: PropTypes.string,
children: PropTypes.node,
getChart: Pr... | 12 |
diff --git a/test/jasmine/tests/select_test.js b/test/jasmine/tests/select_test.js @@ -688,6 +688,45 @@ describe('Click-to-select', function() {
}
});
+ it('should maintain style of errorbars after double click cleared selection (bar case)', function(done) {
+ Plotly.newPlot(gd, { // Note: this call should be newPlot n... | 0 |
diff --git a/packages/openneuro-server/datalad/snapshots.js b/packages/openneuro-server/datalad/snapshots.js @@ -93,6 +93,7 @@ export const createSnapshot = async (
tag,
oldDesc,
)
+ if (snapshotDoi) descriptionFieldUpdates['DatasetDOI'] = snapshotDoi
} catch (err) {
Sentry.captureException(err)
}
| 12 |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -66,11 +66,10 @@ jobs:
run: |
git fetch --all
git checkout -b "${{ env.release_branch_name }}"
- - name: get branch commit hashes
- run: |
echo "firstCommitHash=$(git log master..origin/${{ env.release_branch_name }} --pretty=format:"%H" | ta... | 0 |
diff --git a/token-metadata/0xB6eD7644C69416d67B522e20bC294A9a9B405B31/metadata.json b/token-metadata/0xB6eD7644C69416d67B522e20bC294A9a9B405B31/metadata.json "symbol": "0XBTC",
"address": "0xB6eD7644C69416d67B522e20bC294A9a9B405B31",
"decimals": 8,
- "dharmaVerificationStatus": "VERIFIED"
+ "dharmaVerificationStatus":... | 3 |
diff --git a/src/components/AvatarWithImagePicker.js b/src/components/AvatarWithImagePicker.js @@ -128,24 +128,6 @@ class AvatarWithImagePicker extends React.Component {
this.setState({ isErrorModalVisible: false });
}
- /**
- * Checks if the image has the valid size and triggers the onImageSelected callback
- * @param... | 7 |
diff --git a/articles/cross-origin-authentication/index.md b/articles/cross-origin-authentication/index.md @@ -79,7 +79,7 @@ This table lists which browsers can use cross-origin authentication when third-p
<tr>
<th><strong>OS</strong></th>
<th><strong>Browser</strong></th>
- <th><strong>Third-Party Cookies Disabled</st... | 3 |
diff --git a/packages/mjml-carousel/src/CarouselImage.js b/packages/mjml-carousel/src/CarouselImage.js @@ -62,6 +62,9 @@ export default class MjCarouselImage extends BodyComponent {
renderThumbnail() {
const { carouselId, src, alt, 'tb-width': width, target } = this.attributes
const imgIndex = this.props.index + 1
+ co... | 9 |
diff --git a/app/shared/utils/EOS/Handler.js b/app/shared/utils/EOS/Handler.js @@ -39,7 +39,6 @@ export default class EOSHandler {
this.signatureProvider = new JsSignatureProvider(config.keyProvider || []);
}
this.initEOSJS(config.httpEndpoint)
- this.tapos = {
blocksBehind: 3,
broadcast: config.broadcast,
expireSecond... | 10 |
diff --git a/assets/scss/main.scss b/assets/scss/main.scss @@ -245,7 +245,12 @@ body {
-webkit-filter: drop-shadow(0 0 10px transparentize(black, 0.9));
max-width: 100%;
}
- a { color: #158fdc; }
+ a {
+ color: #158fdc;
+ code {
+ color: #158fdc;
+ }
+ }
figure {
text-align: center;
@@ -277,10 +282,12 @@ body {
code {
... | 7 |
diff --git a/app/models/street/StreetEdgeTable.scala b/app/models/street/StreetEdgeTable.scala @@ -402,7 +402,7 @@ object StreetEdgeTable {
| WHEN (SUM(CASE WHEN (audit_task.completed = TRUE) THEN 1 ELSE 0 END) > 0) THEN TRUE ELSE FALSE
| END) AS completed
|FROM street_edge
- |INNER JOIN audit_task ON street_edge.stree... | 3 |
diff --git a/Source/DataSources/SampledPositionProperty.js b/Source/DataSources/SampledPositionProperty.js @@ -295,7 +295,7 @@ SampledPositionProperty.prototype.addSamplesPackedArray = function (
* @returns {Boolean} <code>true</code> if a sample at time was removed, <code>false</code> otherwise.
*/
SampledPositionProp... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.